{ "cells": [ { "cell_type": "markdown", "id": "92475c69", "metadata": {}, "source": [ "# Python API Example - Access Regas 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", "\n", "__N.B. This guide is just for Access Regas Costs 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": 139, "id": "9aa7eca9", "metadata": {}, "outputs": [], "source": [ "# import libraries for callin the API\n", "import json\n", "import os\n", "import sys\n", "import pandas as pd\n", "from base64 import b64encode\n", "from urllib.parse import urljoin\n", "from pprint import pprint\n", "\n", "try:\n", " from urllib import request, parse\n", " from urllib.error import HTTPError\n", "except ImportError:\n", " raise RuntimeError(\"Python 3 required\")" ] }, { "cell_type": "code", "execution_count": 140, "id": "fe759439", "metadata": {}, "outputs": [], "source": [ "# defining query functions \n", "API_BASE_URL = \"https://api.sparkcommodities.com\"\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(\n", " client_id[:5], client_secret[:5]\n", " )\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", "\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", " print(\"{}:{}\".format(client_id, client_secret))\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", " }\n", "\n", " content = do_api_post_query(uri=\"/oauth/token/\", body=body, headers=headers)\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://api.sparkcommodities.com/redoc#section/Authentication/Create-an-Oauth2-Client\n" ] }, { "cell_type": "code", "execution_count": null, "id": "0817250f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ ">>>> Found credentials!\n", ">>>> Client_id=01c23****, client_secret=80763****\n", "01c23590-ef6c-4a36-8237-c89c3f1a3b2a:80763560971790f4920a90a0dcb28698cd60734c71f6bfcbb71a53dd9cd27f198cbf1445faf2bd060c069e10b8a9dd73c9e5aedbc8a0722ed28f7e2246d43335eeb754d0a9aba437f84cf979a3b3ad546646eb1910429450f81ba94f938eed4be07cb253f7f2d55162e97877e2eec642fad34b51df9e833b483a62bd64662b1c\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)" ] }, { "cell_type": "markdown", "id": "bdc1fb62", "metadata": {}, "source": [ "# 2. Reference Data\n", "\n", "Fetching the reference-data endpoint to obtain a list of available terminals & their corresponding UUIDs." ] }, { "cell_type": "code", "execution_count": 142, "id": "0f4ddd6e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/lng/access/regas-costs/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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
TerminalUUIDTerminalName
000317185-978a-4df5-970c-2c28d3ab893cIsle of Grain
100319041-261a-45f8-b4a0-826c4bbc5947Revithoussa
20031994e-f370-4927-ba88-a4e7a78c42dbZeebrugge
30032d353-d0d8-4454-9b6c-a6c5db12e49dSpain TVB
40032fecd-cec3-422b-939e-75aecc32f94cŚwinoujście
500332c69-88d1-4a7a-bcc7-0da39e850e90KRK
600338f3f-8875-435d-87a9-f83d9a5c5241Dunkerque
700355021-dc45-4aaa-8178-a6dc360c07b9OLT Toscana
8003b1adb-f810-443c-a971-c2a6b28cb5dcFos Cavaou
9003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir
10003bf9ab-2829-40a1-a83d-c32b764f21fdSouth Hook
11003e9c62-1047-45c4-a0e2-ebba5d73cf3bSines
12003f577c-7058-4b50-9c94-c499c07ca080Gate
13003f55df-08c7-4b6a-8597-fbe9e3f398f8Klaipeda
14003d153e-282a-47a1-bb0c-b4fe0bc62d38Inkoo
1500361ab8-f70d-4a08-8e45-e6eb5a0b8b2fLe Havre
16003660ee-567d-4d23-9e43-2891509b7bfbPiombino
17003497c6-ed32-412f-95ef-c3b1f962464eBrunsbuttel
18003b1d36-d72b-4331-888f-22b3f84c1cceWilhelmshaven 1
190039f836-cd97-4965-b7a5-74c2cd307956Deutsche Ostsee Phase 1
20003e3e70-3626-4124-8ee9-d3ec39678e8cDeutsche Ostsee
2100378624-8afa-4cce-987e-e76cebe077abWilhelmshaven 2
220037d9e4-cf09-4f26-8934-f1e038e185eaEemsEnergyTerminal
230038a35c-253f-44f5-a4e5-d5240d98039aAdriatic
24003b319e-b29e-4853-b4ee-85794d5bacbaStade
250030d930-6574-4049-a739-327a16620429Ravenna
2600352746-7b90-4f69-a995-6048f670c1b8Alexandroupolis
\n", "
" ], "text/plain": [ " TerminalUUID TerminalName\n", "0 00317185-978a-4df5-970c-2c28d3ab893c Isle of Grain\n", "1 00319041-261a-45f8-b4a0-826c4bbc5947 Revithoussa\n", "2 0031994e-f370-4927-ba88-a4e7a78c42db Zeebrugge\n", "3 0032d353-d0d8-4454-9b6c-a6c5db12e49d Spain TVB\n", "4 0032fecd-cec3-422b-939e-75aecc32f94c Świnoujście\n", "5 00332c69-88d1-4a7a-bcc7-0da39e850e90 KRK\n", "6 00338f3f-8875-435d-87a9-f83d9a5c5241 Dunkerque\n", "7 00355021-dc45-4aaa-8178-a6dc360c07b9 OLT Toscana\n", "8 003b1adb-f810-443c-a971-c2a6b28cb5dc Fos Cavaou\n", "9 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir\n", "10 003bf9ab-2829-40a1-a83d-c32b764f21fd South Hook\n", "11 003e9c62-1047-45c4-a0e2-ebba5d73cf3b Sines\n", "12 003f577c-7058-4b50-9c94-c499c07ca080 Gate\n", "13 003f55df-08c7-4b6a-8597-fbe9e3f398f8 Klaipeda\n", "14 003d153e-282a-47a1-bb0c-b4fe0bc62d38 Inkoo\n", "15 00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f Le Havre\n", "16 003660ee-567d-4d23-9e43-2891509b7bfb Piombino\n", "17 003497c6-ed32-412f-95ef-c3b1f962464e Brunsbuttel\n", "18 003b1d36-d72b-4331-888f-22b3f84c1cce Wilhelmshaven 1\n", "19 0039f836-cd97-4965-b7a5-74c2cd307956 Deutsche Ostsee Phase 1\n", "20 003e3e70-3626-4124-8ee9-d3ec39678e8c Deutsche Ostsee\n", "21 00378624-8afa-4cce-987e-e76cebe077ab Wilhelmshaven 2\n", "22 0037d9e4-cf09-4f26-8934-f1e038e185ea EemsEnergyTerminal\n", "23 0038a35c-253f-44f5-a4e5-d5240d98039a Adriatic\n", "24 003b319e-b29e-4853-b4ee-85794d5bacba Stade\n", "25 0030d930-6574-4049-a739-327a16620429 Ravenna\n", "26 00352746-7b90-4f69-a995-6048f670c1b8 Alexandroupolis" ] }, "execution_count": 142, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from io import StringIO\n", "\n", "## Defining the reference-data calling function\n", "\n", "def fetch_regas_reference_data(access_token, format='json'):\n", "\n", " content = do_api_get_query(\n", " uri=\"/v1.0/lng/access/regas-costs/reference-data/\", 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\n", "\n", "ref_data = fetch_regas_reference_data(access_token, format='csv')\n", "ref_data" ] }, { "cell_type": "markdown", "id": "e1feef7f", "metadata": {}, "source": [ "## 3. Fetching Latest Prices\n", "\n", "using the \".../latest/\" endpoint to call the latest regas costs release. This endpoint takes no parameters.\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": 143, "id": "438529d1", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/lng/access/regas-costs/latest/?vessel-size=174000&unit=usd-per-mmbtu\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", "
ReleaseDateDeliveryMonthDeliveryMonthNameDeliveryMonthIndexTerminalUUIDTerminalNameVesselSizeSlotBerthSlotUnloadStorageRegasSlotBerthUnloadStorageRegas...AdditionalStorageAdditionalSendoutFuelGasLossesGasInKindEntryCapacityEntryVariableEmissionsPowerTotalRegasCostPortCostTotalWithPortCost
02026-01-142026-02-01Feb26M+10030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.002...NaNNaN0.1670.126NaN0.103NaN1.3980.0611.459
12026-01-142026-03-01Mar26M+20030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.002...NaNNaN0.1580.126NaN0.103NaN1.3890.0611.450
22026-01-142026-04-01Apr26M+30030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.002...NaNNaN0.1480.126NaN0.103NaN1.3790.0611.440
\n", "

3 rows × 21 columns

\n", "
" ], "text/plain": [ " ReleaseDate DeliveryMonth DeliveryMonthName DeliveryMonthIndex \\\n", "0 2026-01-14 2026-02-01 Feb26 M+1 \n", "1 2026-01-14 2026-03-01 Mar26 M+2 \n", "2 2026-01-14 2026-04-01 Apr26 M+3 \n", "\n", " TerminalUUID TerminalName VesselSize SlotBerth \\\n", "0 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "1 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "2 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "\n", " SlotUnloadStorageRegas SlotBerthUnloadStorageRegas ... \\\n", "0 NaN 1.002 ... \n", "1 NaN 1.002 ... \n", "2 NaN 1.002 ... \n", "\n", " AdditionalStorage AdditionalSendout FuelGasLossesGasInKind \\\n", "0 NaN NaN 0.167 \n", "1 NaN NaN 0.158 \n", "2 NaN NaN 0.148 \n", "\n", " EntryCapacity EntryVariable Emissions Power TotalRegasCost PortCost \\\n", "0 0.126 NaN 0.103 NaN 1.398 0.061 \n", "1 0.126 NaN 0.103 NaN 1.389 0.061 \n", "2 0.126 NaN 0.103 NaN 1.379 0.061 \n", "\n", " TotalWithPortCost \n", "0 1.459 \n", "1 1.450 \n", "2 1.440 \n", "\n", "[3 rows x 21 columns]" ] }, "execution_count": 143, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from io import StringIO\n", "\n", "## Defining the function\n", "\n", "def fetch_latest_price_release(access_token, vessel_size, unit, terminal_uuid=None, format='json'):\n", "\n", " query_params = '?vessel-size={}'.format(vessel_size)\n", "\n", " query_params += \"&unit={}\".format(unit)\n", "\n", " if terminal_uuid is not None:\n", " query_params += \"&terminal-uuid={}\".format(terminal_uuid)\n", "\n", " uri = \"/v1.0/lng/access/regas-costs/latest/{}\".format(query_params)\n", "\n", " content = do_api_get_query(\n", " uri=uri, 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\n", "\n", "\n", "latest = fetch_latest_price_release(access_token, vessel_size='174000', unit='usd-per-mmbtu', format='csv')\n", "\n", "latest.head(3)" ] }, { "cell_type": "markdown", "id": "e71c4a50", "metadata": {}, "source": [ "# 4. Historical Data\n", "\n", "Here we define a function to fetch the historical regas costs dataset. The available parameters can be found on our API docs:\n", "\n", "https://www.sparkcommodities.com/api/lng-access/regas-costs.html\n", "\n", "The function below also includes a \"latest\" parameter which gives the option to call the \".../latest/\" endpoint, to provide a universal function to call historical & latest regas costs data. By default, this is set to latest=False.\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": 144, "id": "aa52c69a", "metadata": {}, "outputs": [], "source": [ "from io import StringIO\n", "\n", "## Defining the function\n", "\n", "def fetch_historical_price_releases(access_token, vessel_size, unit, latest=False, start=None, end=None, limit=None, offset=None, terminal_uuid=None, format='json'):\n", " \n", " # if latest=True, set query_params to call the \".../latest/\" endpoint\n", " if latest == True:\n", " query_params = 'latest/'\n", " query_params += '?vessel-size={}'.format(vessel_size)\n", " \n", " else:\n", " query_params = '?vessel-size={}'.format(vessel_size)\n", "\n", " query_params += \"&unit={}\".format(unit)\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 terminal_uuid is not None:\n", " query_params += \"&terminal-uuid={}\".format(terminal_uuid)\n", " \n", "\n", " uri = \"/v1.0/lng/access/regas-costs/{}\".format(query_params)\n", "\n", " content = do_api_get_query(\n", " uri=uri, 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\n" ] }, { "cell_type": "markdown", "id": "37704d61", "metadata": {}, "source": [ "#### JSON Response" ] }, { "cell_type": "code", "execution_count": 145, "id": "3970e2d0", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/lng/access/regas-costs/?vessel-size=174000&unit=usd-per-mmbtu&start=2026-01-01&end=2026-01-10\n", "200\n" ] }, { "data": { "text/plain": [ "{'errors': [],\n", " 'data': [{'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.393',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.455'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.387',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.388',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.45'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.385',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.447'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.385',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.447'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.387',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.387',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.387',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.385',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.447'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.387',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.39',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.452'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.01',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.389',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.451'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.253',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.201',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.391'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.23',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.189',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.368'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.205',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.169',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.343'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.23',\n", " 'fuelGasLossesGasInKind': '0.138',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.195',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.368'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.289',\n", " 'fuelGasLossesGasInKind': '0.135',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.257',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.427'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.415',\n", " 'fuelGasLossesGasInKind': '0.135',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.383',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.553'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.416',\n", " 'fuelGasLossesGasInKind': '0.136',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.383',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.554'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.298',\n", " 'fuelGasLossesGasInKind': '0.137',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.264',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.286',\n", " 'fuelGasLossesGasInKind': '0.138',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.225',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.424'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.251',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.182',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.389'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.246',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.174',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.384'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.272',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.077',\n", " 'power': '0.186',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.41'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.57',\n", " 'fuelGasLossesGasInKind': '0.163',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.599'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.564',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.593'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.565',\n", " 'fuelGasLossesGasInKind': '0.158',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.594'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.562',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.591'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.562',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.591'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.564',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.593'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.564',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.593'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.563',\n", " 'fuelGasLossesGasInKind': '0.156',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.592'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.562',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.591'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.564',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.593'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.567',\n", " 'fuelGasLossesGasInKind': '0.16',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.596'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.199',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.566',\n", " 'fuelGasLossesGasInKind': '0.159',\n", " 'entryCapacity': '0.208',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.595'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.418',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.453'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.402',\n", " 'fuelGasLossesGasInKind': '0.128',\n", " 'entryCapacity': '0.06',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.437'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.382',\n", " 'fuelGasLossesGasInKind': '0.124',\n", " 'entryCapacity': '0.044',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.417'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.366',\n", " 'fuelGasLossesGasInKind': '0.123',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.401'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.354',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.389'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.357',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.392'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.359',\n", " 'fuelGasLossesGasInKind': '0.123',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.394'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.369',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.404'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.386',\n", " 'fuelGasLossesGasInKind': '0.124',\n", " 'entryCapacity': '0.048',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.421'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.403',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.064',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.438'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.196',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.415',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.073',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.45'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.196',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.426',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.08',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.461'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.329',\n", " 'fuelGasLossesGasInKind': '0.02',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.382'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.329',\n", " 'fuelGasLossesGasInKind': '0.02',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.382'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.329',\n", " 'fuelGasLossesGasInKind': '0.02',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.382'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.329',\n", " 'fuelGasLossesGasInKind': '0.02',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.382'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.877',\n", " 'fuelGasLossesGasInKind': '0.161',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.994'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.876',\n", " 'fuelGasLossesGasInKind': '0.16',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.993'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.872',\n", " 'fuelGasLossesGasInKind': '0.156',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.989'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.867',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.866',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.983'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.867',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.867',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.87',\n", " 'fuelGasLossesGasInKind': '0.154',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.987'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.871',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.988'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.874',\n", " 'fuelGasLossesGasInKind': '0.158',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.991'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.876',\n", " 'fuelGasLossesGasInKind': '0.16',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.993'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.551',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '1.09',\n", " 'fuelGasLossesGasInKind': '0.161',\n", " 'entryCapacity': '0.284',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '1.207'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.947',\n", " 'fuelGasLossesGasInKind': '0.108',\n", " 'entryCapacity': '0.474',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.005'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.395',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.922'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.741',\n", " 'fuelGasLossesGasInKind': '0.105',\n", " 'entryCapacity': '0.271',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.799'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.679',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.211',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.737'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.638',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.17',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.696'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.643',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.701'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.667',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.198',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.725'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.691',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.222',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.749'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.86',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.392',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.918'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.946',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.477',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.004'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.054',\n", " 'fuelGasLossesGasInKind': '0.106',\n", " 'entryCapacity': '0.583',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.112'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.365',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.06',\n", " 'fuelGasLossesGasInKind': '0.105',\n", " 'entryCapacity': '0.59',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.841',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.903'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.841',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.903'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.732',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.844',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.906'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.75',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.862',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.924'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.039',\n", " 'fuelGasLossesGasInKind': '0.096',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.098'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.038',\n", " 'fuelGasLossesGasInKind': '0.095',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.097'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.036',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.095'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.033',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.092'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.0',\n", " 'fuelGasLossesGasInKind': '0.069',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.059'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.001',\n", " 'fuelGasLossesGasInKind': '0.07',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.06'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.001',\n", " 'fuelGasLossesGasInKind': '0.07',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.06'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.002',\n", " 'fuelGasLossesGasInKind': '0.071',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.061'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.036',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.095'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.037',\n", " 'fuelGasLossesGasInKind': '0.094',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.096'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.038',\n", " 'fuelGasLossesGasInKind': '0.095',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.097'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.041',\n", " 'fuelGasLossesGasInKind': '0.096',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.052',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.1'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.13',\n", " 'fuelGasLossesGasInKind': '0.2',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.137'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.122',\n", " 'fuelGasLossesGasInKind': '0.192',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.129'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.123',\n", " 'fuelGasLossesGasInKind': '0.193',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.13'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.119',\n", " 'fuelGasLossesGasInKind': '0.189',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.126'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.12',\n", " 'fuelGasLossesGasInKind': '0.19',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.127'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.122',\n", " 'fuelGasLossesGasInKind': '0.192',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.129'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.122',\n", " 'fuelGasLossesGasInKind': '0.192',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.129'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.121',\n", " 'fuelGasLossesGasInKind': '0.191',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.128'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.12',\n", " 'fuelGasLossesGasInKind': '0.19',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.127'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.122',\n", " 'fuelGasLossesGasInKind': '0.192',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.129'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.126',\n", " 'fuelGasLossesGasInKind': '0.196',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.133'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.64',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.128',\n", " 'fuelGasLossesGasInKind': '0.195',\n", " 'entryCapacity': '0.187',\n", " 'entryVariable': None,\n", " 'emissions': '0.106',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.135'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.177',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.216'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.212'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.174',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.213'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.172',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.211'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.172',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.211'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.212'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.212'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.212'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.172',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.211'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.212'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.175',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.214'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.876',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.175',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.214'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.064',\n", " 'fuelGasLossesGasInKind': '0.249',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.119'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.061',\n", " 'fuelGasLossesGasInKind': '0.246',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.116'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.058',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.113'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.108'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.108'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.056',\n", " 'fuelGasLossesGasInKind': '0.238',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.056',\n", " 'fuelGasLossesGasInKind': '0.238',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.055',\n", " 'fuelGasLossesGasInKind': '0.237',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.11'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.056',\n", " 'fuelGasLossesGasInKind': '0.238',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.058',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.113'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.062',\n", " 'fuelGasLossesGasInKind': '0.244',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.065',\n", " 'fuelGasLossesGasInKind': '0.243',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.146',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.12'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.914',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.983'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.91',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.91',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.91',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.911',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.98'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.913',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.982'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.616',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.912',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.283',\n", " 'fuelGasLossesGasInKind': '0.25',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.344'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.28',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.341'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.274',\n", " 'fuelGasLossesGasInKind': '0.241',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.335'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.267',\n", " 'fuelGasLossesGasInKind': '0.234',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.328'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.18',\n", " 'fuelGasLossesGasInKind': '0.18',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.101',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.24'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.1',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.073',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.16'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.1',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.073',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.16'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.185',\n", " 'fuelGasLossesGasInKind': '0.185',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.101',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.245'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.273',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.334'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.277',\n", " 'fuelGasLossesGasInKind': '0.244',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.338'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.28',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.13',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.341'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.674',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.286',\n", " 'fuelGasLossesGasInKind': '0.249',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.134',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.347'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.04',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.099'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.038',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.097'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.034',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.093'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.032',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.091'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.614',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.91',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.115',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '0.969'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.614',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.908',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.113',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '0.967'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.614',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.912',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.117',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '0.971'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.614',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.92',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.125',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.614',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.925',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.13',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.036',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.095'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.623',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.038',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.097'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.631',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.05',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': '0.087',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.109'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.251',\n", " 'fuelGasLossesGasInKind': '0.092',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.327'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.323'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.248',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.324'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.246',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.322'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.246',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.322'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.323'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.323'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.323'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.246',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.322'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.323'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.249',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.325'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.946',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.248',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.324'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.461',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.491'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.254',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.46',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.49'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.468',\n", " 'fuelGasLossesGasInKind': '0.049',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.522'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.467',\n", " 'fuelGasLossesGasInKind': '0.048',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.521'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.468',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.522'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.468',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.522'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.469',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.523'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.47',\n", " 'fuelGasLossesGasInKind': '0.048',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.524'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.229',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.47',\n", " 'fuelGasLossesGasInKind': '0.048',\n", " 'entryCapacity': '0.112',\n", " 'entryVariable': None,\n", " 'emissions': '0.035',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.524'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.318',\n", " 'fuelGasLossesGasInKind': '0.272',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.379'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.315',\n", " 'fuelGasLossesGasInKind': '0.269',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.376'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.308',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.369'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.301',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.362'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.0',\n", " 'fuelGasLossesGasInKind': '0.069',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.06'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.001',\n", " 'fuelGasLossesGasInKind': '0.07',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.061'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.001',\n", " 'fuelGasLossesGasInKind': '0.07',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.061'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.663',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.002',\n", " 'fuelGasLossesGasInKind': '0.071',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.062'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.308',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.369'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.312',\n", " 'fuelGasLossesGasInKind': '0.266',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.373'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.315',\n", " 'fuelGasLossesGasInKind': '0.269',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.376'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.675',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.321',\n", " 'fuelGasLossesGasInKind': '0.271',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.146',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.382'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.171',\n", " 'fuelGasLossesGasInKind': '0.135',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.15',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.233'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.147',\n", " 'fuelGasLossesGasInKind': '0.126',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.135',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.209'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.138',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.131',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.2'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.136',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.13',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.198'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.132',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.128',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.194'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.131',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.127',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.193'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.132',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.128',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.194'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.138',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.132',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.2'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.167',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.135',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.229'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.175',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.136',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.237'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.181',\n", " 'fuelGasLossesGasInKind': '0.13',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.139',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.243'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.2',\n", " 'fuelGasLossesGasInKind': '0.133',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.067',\n", " 'power': '0.144',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.262'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.878',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.63',\n", " 'fuelGasLossesGasInKind': '0.384',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.2',\n", " 'power': None,\n", " 'portCost': '0.115',\n", " 'totalWithPortCost': '1.745'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.878',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.627',\n", " 'fuelGasLossesGasInKind': '0.381',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.2',\n", " 'power': None,\n", " 'portCost': '0.115',\n", " 'totalWithPortCost': '1.742'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.355',\n", " 'fuelGasLossesGasInKind': '0.209',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.468'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.349',\n", " 'fuelGasLossesGasInKind': '0.203',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.462'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.347',\n", " 'fuelGasLossesGasInKind': '0.201',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.46'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.349',\n", " 'fuelGasLossesGasInKind': '0.203',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.462'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.349',\n", " 'fuelGasLossesGasInKind': '0.203',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.462'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.352',\n", " 'fuelGasLossesGasInKind': '0.206',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.465'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.865',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.354',\n", " 'fuelGasLossesGasInKind': '0.208',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.467'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.878',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.622',\n", " 'fuelGasLossesGasInKind': '0.376',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.2',\n", " 'power': None,\n", " 'portCost': '0.115',\n", " 'totalWithPortCost': '1.737'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.878',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.626',\n", " 'fuelGasLossesGasInKind': '0.38',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.2',\n", " 'power': None,\n", " 'portCost': '0.115',\n", " 'totalWithPortCost': '1.741'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.878',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.635',\n", " 'fuelGasLossesGasInKind': '0.383',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.206',\n", " 'power': None,\n", " 'portCost': '0.115',\n", " 'totalWithPortCost': '1.75'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.176',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.912',\n", " 'fuelGasLossesGasInKind': '0.272',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '0.95'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.999',\n", " 'fuelGasLossesGasInKind': '0.269',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.037'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.992',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.03'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.985',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.023'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.982',\n", " 'fuelGasLossesGasInKind': '0.252',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.02'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.985',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.023'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.985',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.023'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.989',\n", " 'fuelGasLossesGasInKind': '0.259',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.027'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.992',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.03'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.996',\n", " 'fuelGasLossesGasInKind': '0.266',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.034'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.999',\n", " 'fuelGasLossesGasInKind': '0.269',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.142',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.037'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.005',\n", " 'fuelGasLossesGasInKind': '0.271',\n", " 'entryCapacity': '0.26',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.146',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.043'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.343',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.37'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.343',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.37'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.343',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.37'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.343',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.37'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.343',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.37'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.055',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.344',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.133',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.371'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.967',\n", " 'fuelGasLossesGasInKind': '0.216',\n", " 'entryCapacity': '0.157',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.018'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.982',\n", " 'fuelGasLossesGasInKind': '0.214',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.033'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.971',\n", " 'fuelGasLossesGasInKind': '0.209',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.022'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.933',\n", " 'fuelGasLossesGasInKind': '0.167',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.59',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.887',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.938'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.59',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.895',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.946'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.59',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.895',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.946'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.59',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.891',\n", " 'fuelGasLossesGasInKind': '0.133',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.942'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.976',\n", " 'fuelGasLossesGasInKind': '0.208',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.027'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.973',\n", " 'fuelGasLossesGasInKind': '0.211',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.024'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.982',\n", " 'fuelGasLossesGasInKind': '0.214',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.033'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.594',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.984',\n", " 'fuelGasLossesGasInKind': '0.216',\n", " 'entryCapacity': '0.174',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.035'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.862',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.389',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.897'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.808',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.337',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.843'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.712',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.243',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.747'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.689',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.222',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.012',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.724'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.65',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.685'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.645',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.68'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.638',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.673'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.651',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.686'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.686',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.214',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.016',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.721'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.78',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.307',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.815'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.446',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.873',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.4',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.908'},\n", " {'releaseDate': '2026-01-02',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.447',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.957',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.482',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.018',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.992'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.381',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.442'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.376',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.437'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.374',\n", " 'fuelGasLossesGasInKind': '0.138',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.435'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.376',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.437'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.376',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.437'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.376',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.437'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.38',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.441'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.006',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.379',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.44'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.235',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.192',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.373'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.216',\n", " 'fuelGasLossesGasInKind': '0.136',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.182',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.354'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.193',\n", " 'fuelGasLossesGasInKind': '0.132',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.163',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.331'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.216',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.187',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.354'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.273',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.246',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.411'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.395',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.368',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.533'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.396',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.369',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.534'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.283',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.075',\n", " 'power': '0.254',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.421'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.273',\n", " 'fuelGasLossesGasInKind': '0.132',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.217',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.411'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.176',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.378'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.236',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.168',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.374'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.261',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.079',\n", " 'power': '0.179',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.399'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.56',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.589'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.554',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.583'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.556',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.585'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.553',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.582'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.554',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.583'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.555',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.584'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.556',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.585'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.555',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.584'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.554',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.583'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.556',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.585'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.56',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.589'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.558',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.587'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.408',\n", " 'fuelGasLossesGasInKind': '0.124',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.443'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.392',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.059',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.427'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.373',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.408'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.36',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.395'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.348',\n", " 'fuelGasLossesGasInKind': '0.113',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.383'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.35',\n", " 'fuelGasLossesGasInKind': '0.115',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.385'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.353',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.388'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.361',\n", " 'fuelGasLossesGasInKind': '0.119',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.396'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.38',\n", " 'fuelGasLossesGasInKind': '0.119',\n", " 'entryCapacity': '0.048',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.415'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.397',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.064',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.432'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.408',\n", " 'fuelGasLossesGasInKind': '0.122',\n", " 'entryCapacity': '0.073',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.443'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.42',\n", " 'fuelGasLossesGasInKind': '0.126',\n", " 'entryCapacity': '0.08',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.455'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.866',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.983'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.865',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.982'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.862',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.86',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.977'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.858',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.859',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.859',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.862',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.866',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.983'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.868',\n", " 'fuelGasLossesGasInKind': '0.154',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.985'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '1.081',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.283',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '1.198'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.939',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.472',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.997'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.857',\n", " 'fuelGasLossesGasInKind': '0.099',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.915'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.734',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.27',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.792'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.672',\n", " 'fuelGasLossesGasInKind': '0.098',\n", " 'entryCapacity': '0.21',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.73'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.632',\n", " 'fuelGasLossesGasInKind': '0.099',\n", " 'entryCapacity': '0.169',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.69'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.637',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.695'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.662',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.198',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.72'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.685',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.221',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.743'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.853',\n", " 'fuelGasLossesGasInKind': '0.099',\n", " 'entryCapacity': '0.39',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.911'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.939',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.475',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.997'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.048',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.581',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.106'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.102',\n", " 'entryCapacity': '0.587',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.838',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.9'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.838',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.9'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.729',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.84',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.902'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.747',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.858',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.92'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.031',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.09'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.03',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.089'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.028',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.087'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.027',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.086'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.031',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.09'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.032',\n", " 'fuelGasLossesGasInKind': '0.092',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.091'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.034',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.052',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.093'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.117',\n", " 'fuelGasLossesGasInKind': '0.19',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.124'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.109',\n", " 'fuelGasLossesGasInKind': '0.182',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.116'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.111',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.108',\n", " 'fuelGasLossesGasInKind': '0.181',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.115'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.109',\n", " 'fuelGasLossesGasInKind': '0.182',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.116'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.111',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.111',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.111',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.109',\n", " 'fuelGasLossesGasInKind': '0.182',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.116'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.112',\n", " 'fuelGasLossesGasInKind': '0.185',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.119'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.116',\n", " 'fuelGasLossesGasInKind': '0.189',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.104',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.123'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.637',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.118',\n", " 'fuelGasLossesGasInKind': '0.188',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.107',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.125'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.168',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.207'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.164',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.203'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.168',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.207'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.167',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.206'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.051',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.106'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.049',\n", " 'fuelGasLossesGasInKind': '0.233',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.104'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.045',\n", " 'fuelGasLossesGasInKind': '0.227',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.1'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.043',\n", " 'fuelGasLossesGasInKind': '0.225',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.098'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.043',\n", " 'fuelGasLossesGasInKind': '0.225',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.098'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.045',\n", " 'fuelGasLossesGasInKind': '0.227',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.1'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.046',\n", " 'fuelGasLossesGasInKind': '0.228',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.101'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.046',\n", " 'fuelGasLossesGasInKind': '0.228',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.101'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.047',\n", " 'fuelGasLossesGasInKind': '0.229',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.102'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.05',\n", " 'fuelGasLossesGasInKind': '0.232',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.105'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.108'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.057',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.147',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.112'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.907',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.903',\n", " 'fuelGasLossesGasInKind': '0.078',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.972'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.907',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.614',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.906',\n", " 'fuelGasLossesGasInKind': '0.081',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.265',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.325'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.264',\n", " 'fuelGasLossesGasInKind': '0.234',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.324'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.258',\n", " 'fuelGasLossesGasInKind': '0.228',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.318'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.255',\n", " 'fuelGasLossesGasInKind': '0.225',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.315'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.17',\n", " 'fuelGasLossesGasInKind': '0.173',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.23'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.09',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.073',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.15'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.09',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.073',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.15'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.175',\n", " 'fuelGasLossesGasInKind': '0.178',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.235'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.261',\n", " 'fuelGasLossesGasInKind': '0.231',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.321'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.265',\n", " 'fuelGasLossesGasInKind': '0.235',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.325'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.268',\n", " 'fuelGasLossesGasInKind': '0.238',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.131',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.328'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.671',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.274',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.135',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.334'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.028',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.087'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.027',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.086'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.024',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.083'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.022',\n", " 'fuelGasLossesGasInKind': '0.137',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.081'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.901',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.11',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.959'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.902',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.111',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.96'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.114',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.963'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.913',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.122',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.971'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.917',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.126',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.028',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.087'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.085',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.629',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.041',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.087',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.1'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.243',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.319'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.239',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.315'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.243',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.319'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.943',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.242',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.318'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.456',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.486'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.456',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.486'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.463',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.517'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.463',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.517'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.463',\n", " 'fuelGasLossesGasInKind': '0.044',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.517'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.463',\n", " 'fuelGasLossesGasInKind': '0.044',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.517'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.465',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.519'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.465',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.519'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.299',\n", " 'fuelGasLossesGasInKind': '0.256',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.359'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.298',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.358'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.292',\n", " 'fuelGasLossesGasInKind': '0.249',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.352'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.288',\n", " 'fuelGasLossesGasInKind': '0.245',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.348'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.295',\n", " 'fuelGasLossesGasInKind': '0.252',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.355'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.299',\n", " 'fuelGasLossesGasInKind': '0.256',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.359'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.302',\n", " 'fuelGasLossesGasInKind': '0.259',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.362'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.309',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.147',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.369'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.158',\n", " 'fuelGasLossesGasInKind': '0.126',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.144',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.22'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.136',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.13',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.198'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.13',\n", " 'fuelGasLossesGasInKind': '0.115',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.127',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.192'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.126',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.124',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.188'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.123',\n", " 'fuelGasLossesGasInKind': '0.112',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.123',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.185'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.123',\n", " 'fuelGasLossesGasInKind': '0.112',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.123',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.185'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.123',\n", " 'fuelGasLossesGasInKind': '0.112',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.123',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.185'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.129',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.066',\n", " 'power': '0.127',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.191'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.159',\n", " 'fuelGasLossesGasInKind': '0.115',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.066',\n", " 'power': '0.13',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.221'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.168',\n", " 'fuelGasLossesGasInKind': '0.122',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.066',\n", " 'power': '0.132',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.23'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.066',\n", " 'power': '0.134',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.235'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.192',\n", " 'fuelGasLossesGasInKind': '0.128',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.069',\n", " 'power': '0.139',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.254'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.606',\n", " 'fuelGasLossesGasInKind': '0.362',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.202',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.72'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.605',\n", " 'fuelGasLossesGasInKind': '0.361',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.202',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.719'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.34',\n", " 'fuelGasLossesGasInKind': '0.198',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.453'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.337',\n", " 'fuelGasLossesGasInKind': '0.195',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.45'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.335',\n", " 'fuelGasLossesGasInKind': '0.193',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.448'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.336',\n", " 'fuelGasLossesGasInKind': '0.194',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.336',\n", " 'fuelGasLossesGasInKind': '0.194',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.34',\n", " 'fuelGasLossesGasInKind': '0.198',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.453'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.861',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.342',\n", " 'fuelGasLossesGasInKind': '0.2',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.113',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.455'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.606',\n", " 'fuelGasLossesGasInKind': '0.362',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.202',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.72'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.611',\n", " 'fuelGasLossesGasInKind': '0.367',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.202',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.725'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.62',\n", " 'fuelGasLossesGasInKind': '0.37',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.208',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.734'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.176',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.896',\n", " 'fuelGasLossesGasInKind': '0.256',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '0.934'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.985',\n", " 'fuelGasLossesGasInKind': '0.255',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.023'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.979',\n", " 'fuelGasLossesGasInKind': '0.249',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.017'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.975',\n", " 'fuelGasLossesGasInKind': '0.245',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.013'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.973',\n", " 'fuelGasLossesGasInKind': '0.243',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.011'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.974',\n", " 'fuelGasLossesGasInKind': '0.244',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.012'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.974',\n", " 'fuelGasLossesGasInKind': '0.244',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.012'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.979',\n", " 'fuelGasLossesGasInKind': '0.249',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.017'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.982',\n", " 'fuelGasLossesGasInKind': '0.252',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.02'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.986',\n", " 'fuelGasLossesGasInKind': '0.256',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.024'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.989',\n", " 'fuelGasLossesGasInKind': '0.259',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.143',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.027'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.996',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.147',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.034'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.953',\n", " 'fuelGasLossesGasInKind': '0.204',\n", " 'entryCapacity': '0.157',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.004'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.968',\n", " 'fuelGasLossesGasInKind': '0.203',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.019'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.958',\n", " 'fuelGasLossesGasInKind': '0.198',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.009'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.589',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.922',\n", " 'fuelGasLossesGasInKind': '0.16',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.88',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.931'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.885',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.936'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.885',\n", " 'fuelGasLossesGasInKind': '0.125',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.936'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.883',\n", " 'fuelGasLossesGasInKind': '0.128',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.934'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.965',\n", " 'fuelGasLossesGasInKind': '0.2',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.016'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.964',\n", " 'fuelGasLossesGasInKind': '0.204',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.015'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.971',\n", " 'fuelGasLossesGasInKind': '0.206',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.022'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.592',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.973',\n", " 'fuelGasLossesGasInKind': '0.208',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.024'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.857',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.387',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.892'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.802',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.335',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.837'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.708',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.242',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.743'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.687',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.222',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.012',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.722'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.646',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.681'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.642',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.677'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.634',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.669'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.647',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.682'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.681',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.213',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.716'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.776',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.306',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.811'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.868',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.398',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.903'},\n", " {'releaseDate': '2026-01-05',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.445',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.952',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.48',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.987'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.384',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.445'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.378',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.439'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.376',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.437'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.14',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.38',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.441'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.005',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.379',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.44'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.242',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.196',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.222',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.186',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.36'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.196',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.165',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.334'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.22',\n", " 'fuelGasLossesGasInKind': '0.133',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.19',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.358'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.278',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.25',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.416'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.402',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.374',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.54'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.403',\n", " 'fuelGasLossesGasInKind': '0.131',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.375',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.541'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.288',\n", " 'fuelGasLossesGasInKind': '0.133',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.074',\n", " 'power': '0.258',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.426'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.276',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.219',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.414'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.242',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.178',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.238',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.074',\n", " 'power': '0.17',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.376'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.262',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.077',\n", " 'power': '0.181',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.4'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.564',\n", " 'fuelGasLossesGasInKind': '0.159',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.593'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.558',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.587'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.555',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.584'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.555',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.584'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.555',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.584'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.561',\n", " 'fuelGasLossesGasInKind': '0.156',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.59'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.56',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.589'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.411',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.446'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.396',\n", " 'fuelGasLossesGasInKind': '0.124',\n", " 'entryCapacity': '0.059',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.431'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.375',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.41'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.361',\n", " 'fuelGasLossesGasInKind': '0.119',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.396'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.349',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.384'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.352',\n", " 'fuelGasLossesGasInKind': '0.117',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.387'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.355',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.39'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.363',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.398'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.38',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.048',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.415'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.399',\n", " 'fuelGasLossesGasInKind': '0.122',\n", " 'entryCapacity': '0.064',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.434'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.409',\n", " 'fuelGasLossesGasInKind': '0.123',\n", " 'entryCapacity': '0.073',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.444'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.421',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.08',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.456'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.869',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.986'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.868',\n", " 'fuelGasLossesGasInKind': '0.154',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.985'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.861',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.978'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.859',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.861',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.978'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.861',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.978'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.15',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.865',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.982'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.867',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.869',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.986'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.549',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '1.082',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.282',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '1.199'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.942',\n", " 'fuelGasLossesGasInKind': '0.106',\n", " 'entryCapacity': '0.472',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.0'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.858',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.393',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.916'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.735',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.27',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.793'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.673',\n", " 'fuelGasLossesGasInKind': '0.099',\n", " 'entryCapacity': '0.21',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.731'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.633',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.169',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.691'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.638',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.696'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.662',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.197',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.72'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.686',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.221',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.744'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.854',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.39',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.912'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.939',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.474',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.997'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.048',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.581',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.106'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.364',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.054',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.587',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.112'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.837',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.899'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.837',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.899'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.747',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.858',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.92'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.032',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.091'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.031',\n", " 'fuelGasLossesGasInKind': '0.092',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.09'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.027',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.086'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.996',\n", " 'fuelGasLossesGasInKind': '0.069',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.055'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.03',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.089'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.032',\n", " 'fuelGasLossesGasInKind': '0.093',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.091'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.034',\n", " 'fuelGasLossesGasInKind': '0.094',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.051',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.093'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.119',\n", " 'fuelGasLossesGasInKind': '0.195',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.126'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.11',\n", " 'fuelGasLossesGasInKind': '0.186',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.111',\n", " 'fuelGasLossesGasInKind': '0.187',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.118'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.107',\n", " 'fuelGasLossesGasInKind': '0.183',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.114'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.108',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.115'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.11',\n", " 'fuelGasLossesGasInKind': '0.186',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.11',\n", " 'fuelGasLossesGasInKind': '0.186',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.11',\n", " 'fuelGasLossesGasInKind': '0.186',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.108',\n", " 'fuelGasLossesGasInKind': '0.184',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.115'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.11',\n", " 'fuelGasLossesGasInKind': '0.186',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.117'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.115',\n", " 'fuelGasLossesGasInKind': '0.191',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.102',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.122'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00352746-7b90-4f69-a995-6048f670c1b8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.636',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.117',\n", " 'fuelGasLossesGasInKind': '0.19',\n", " 'entryCapacity': '0.186',\n", " 'entryVariable': None,\n", " 'emissions': '0.105',\n", " 'power': None,\n", " 'portCost': '0.007',\n", " 'totalWithPortCost': '1.124'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.17',\n", " 'fuelGasLossesGasInKind': '0.091',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.209'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.164',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.203'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.164',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.203'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.165',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.204'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.166',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.205'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.168',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.207'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00355021-dc45-4aaa-8178-a6dc360c07b9',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.872',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.167',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.175',\n", " 'entryVariable': None,\n", " 'emissions': '0.032',\n", " 'power': None,\n", " 'portCost': '0.039',\n", " 'totalWithPortCost': '1.206'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.055',\n", " 'fuelGasLossesGasInKind': '0.241',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.11'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.052',\n", " 'fuelGasLossesGasInKind': '0.238',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.107'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.047',\n", " 'fuelGasLossesGasInKind': '0.231',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.102'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.044',\n", " 'fuelGasLossesGasInKind': '0.228',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.099'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.043',\n", " 'fuelGasLossesGasInKind': '0.227',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.098'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.046',\n", " 'fuelGasLossesGasInKind': '0.23',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.101'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.046',\n", " 'fuelGasLossesGasInKind': '0.23',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.101'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.046',\n", " 'fuelGasLossesGasInKind': '0.23',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.101'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.047',\n", " 'fuelGasLossesGasInKind': '0.231',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.102'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.05',\n", " 'fuelGasLossesGasInKind': '0.234',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.105'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.237',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.108'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.564',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.056',\n", " 'fuelGasLossesGasInKind': '0.236',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.145',\n", " 'power': None,\n", " 'portCost': '0.055',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.908',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.977'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.081',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.903',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.972'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.903',\n", " 'fuelGasLossesGasInKind': '0.079',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.972'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.081',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.904',\n", " 'fuelGasLossesGasInKind': '0.08',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.973'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.905',\n", " 'fuelGasLossesGasInKind': '0.081',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.974'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.907',\n", " 'fuelGasLossesGasInKind': '0.083',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.976'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003660ee-567d-4d23-9e43-2891509b7bfb',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.613',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.906',\n", " 'fuelGasLossesGasInKind': '0.082',\n", " 'entryCapacity': '0.178',\n", " 'entryVariable': None,\n", " 'emissions': '0.033',\n", " 'power': None,\n", " 'portCost': '0.069',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.267',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.327'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.266',\n", " 'fuelGasLossesGasInKind': '0.239',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.326'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.26',\n", " 'fuelGasLossesGasInKind': '0.233',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.32'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.254',\n", " 'fuelGasLossesGasInKind': '0.227',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.314'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.171',\n", " 'fuelGasLossesGasInKind': '0.175',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.101',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.231'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.091',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.072',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.151'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.664',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.091',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.072',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.151'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.667',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.176',\n", " 'fuelGasLossesGasInKind': '0.18',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.101',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.236'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.26',\n", " 'fuelGasLossesGasInKind': '0.233',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.32'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.264',\n", " 'fuelGasLossesGasInKind': '0.237',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.324'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.267',\n", " 'fuelGasLossesGasInKind': '0.24',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.129',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.327'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00378624-8afa-4cce-987e-e76cebe077ab',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.67',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.273',\n", " 'fuelGasLossesGasInKind': '0.242',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.133',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.333'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.031',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.09'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.025',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.084'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.023',\n", " 'fuelGasLossesGasInKind': '0.139',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.082'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.903',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.112',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.961'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.902',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.111',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.96'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.906',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.115',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.964'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.913',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.122',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.971'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.611',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.917',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.0',\n", " 'power': '0.126',\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.028',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.087'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.62',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.03',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.084',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.089'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0037d9e4-cf09-4f26-8934-f1e038e185ea',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.628',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.041',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': '0.086',\n", " 'power': '0.0',\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.1'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.245',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.321'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.239',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.315'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.239',\n", " 'fuelGasLossesGasInKind': '0.084',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.315'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.24',\n", " 'fuelGasLossesGasInKind': '0.085',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.316'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.241',\n", " 'fuelGasLossesGasInKind': '0.086',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.317'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.243',\n", " 'fuelGasLossesGasInKind': '0.088',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.319'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0038a35c-253f-44f5-a4e5-d5240d98039a',\n", " 'slotUnloadStorageRegas': '0.942',\n", " 'slotBerth': '0.061',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.242',\n", " 'fuelGasLossesGasInKind': '0.087',\n", " 'entryCapacity': '0.135',\n", " 'entryVariable': None,\n", " 'emissions': '0.017',\n", " 'power': None,\n", " 'portCost': '0.076',\n", " 'totalWithPortCost': '1.318'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.456',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.486'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.456',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.486'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1adb-f810-443c-a971-c2a6b28cb5dc',\n", " 'slotUnloadStorageRegas': '0.253',\n", " 'slotBerth': '0.031',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.02',\n", " 'totalRegasCost': '0.458',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.03',\n", " 'totalWithPortCost': '0.488'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.047',\n", " 'entryCapacity': '0.109',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.464',\n", " 'fuelGasLossesGasInKind': '0.045',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.518'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.465',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.519'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.465',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.519'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f',\n", " 'slotUnloadStorageRegas': '0.228',\n", " 'slotBerth': '0.028',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.018',\n", " 'totalRegasCost': '0.465',\n", " 'fuelGasLossesGasInKind': '0.046',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': '0.034',\n", " 'power': None,\n", " 'portCost': '0.054',\n", " 'totalWithPortCost': '0.519'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.303',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.363'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.301',\n", " 'fuelGasLossesGasInKind': '0.26',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.361'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.294',\n", " 'fuelGasLossesGasInKind': '0.253',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.354'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.288',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.348'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.994',\n", " 'fuelGasLossesGasInKind': '0.067',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.053'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.995',\n", " 'fuelGasLossesGasInKind': '0.068',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.054'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.66',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.996',\n", " 'fuelGasLossesGasInKind': '0.069',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.039',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.055'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.295',\n", " 'fuelGasLossesGasInKind': '0.254',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.355'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.299',\n", " 'fuelGasLossesGasInKind': '0.258',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.359'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.303',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.363'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003b1d36-d72b-4331-888f-22b3f84c1cce',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.672',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.309',\n", " 'fuelGasLossesGasInKind': '0.264',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.145',\n", " 'power': None,\n", " 'portCost': '0.06',\n", " 'totalWithPortCost': '1.369'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.162',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.147',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.224'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.139',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.132',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.201'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.131',\n", " 'fuelGasLossesGasInKind': '0.117',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.128',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.193'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.127',\n", " 'fuelGasLossesGasInKind': '0.115',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.126',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.189'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.125',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.125',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.187'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.124',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.124',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.186'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.125',\n", " 'fuelGasLossesGasInKind': '0.114',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.125',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.187'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.131',\n", " 'fuelGasLossesGasInKind': '0.116',\n", " 'entryCapacity': '0.43',\n", " 'entryVariable': '0.082',\n", " 'emissions': '0.064',\n", " 'power': '0.129',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.193'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.159',\n", " 'fuelGasLossesGasInKind': '0.116',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.131',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.221'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.168',\n", " 'fuelGasLossesGasInKind': '0.123',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.133',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.23'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.31',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.173',\n", " 'fuelGasLossesGasInKind': '0.126',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.064',\n", " 'power': '0.135',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.235'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003bf9ab-2829-40a1-a83d-c32b764f21fd',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.193',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.458',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.067',\n", " 'power': '0.141',\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '1.255'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.611',\n", " 'fuelGasLossesGasInKind': '0.37',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.199',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.725'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.609',\n", " 'fuelGasLossesGasInKind': '0.368',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.199',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.723'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.342',\n", " 'fuelGasLossesGasInKind': '0.202',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.455'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.337',\n", " 'fuelGasLossesGasInKind': '0.197',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.45'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.335',\n", " 'fuelGasLossesGasInKind': '0.195',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.448'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.336',\n", " 'fuelGasLossesGasInKind': '0.196',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.449'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.337',\n", " 'fuelGasLossesGasInKind': '0.197',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.45'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.34',\n", " 'fuelGasLossesGasInKind': '0.2',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.453'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.86',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.342',\n", " 'fuelGasLossesGasInKind': '0.202',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.112',\n", " 'power': None,\n", " 'portCost': '0.113',\n", " 'totalWithPortCost': '1.455'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.606',\n", " 'fuelGasLossesGasInKind': '0.365',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.199',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.72'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.611',\n", " 'fuelGasLossesGasInKind': '0.37',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.199',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.725'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003d153e-282a-47a1-bb0c-b4fe0bc62d38',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.874',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.621',\n", " 'fuelGasLossesGasInKind': '0.374',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': '0.205',\n", " 'power': None,\n", " 'portCost': '0.114',\n", " 'totalWithPortCost': '1.735'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.176',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.9',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '0.938'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.988',\n", " 'fuelGasLossesGasInKind': '0.26',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.026'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.981',\n", " 'fuelGasLossesGasInKind': '0.253',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.019'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.975',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.013'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.973',\n", " 'fuelGasLossesGasInKind': '0.245',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.011'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.975',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.013'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.975',\n", " 'fuelGasLossesGasInKind': '0.247',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.013'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.98',\n", " 'fuelGasLossesGasInKind': '0.252',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.018'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.982',\n", " 'fuelGasLossesGasInKind': '0.254',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.02'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.986',\n", " 'fuelGasLossesGasInKind': '0.258',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.024'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.99',\n", " 'fuelGasLossesGasInKind': '0.262',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.141',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.028'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e3e70-3626-4124-8ee9-d3ec39678e8c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.266',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.996',\n", " 'fuelGasLossesGasInKind': '0.264',\n", " 'entryCapacity': '0.259',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.145',\n", " 'power': None,\n", " 'portCost': '0.038',\n", " 'totalWithPortCost': '1.034'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.342',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.369'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003e9c62-1047-45c4-a0e2-ebba5d73cf3b',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.054',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.098',\n", " 'additionalSendout': '0.013',\n", " 'totalRegasCost': '0.341',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.132',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.035',\n", " 'portCost': '0.027',\n", " 'totalWithPortCost': '0.368'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.955',\n", " 'fuelGasLossesGasInKind': '0.208',\n", " 'entryCapacity': '0.156',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.006'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.971',\n", " 'fuelGasLossesGasInKind': '0.207',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.022'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.961',\n", " 'fuelGasLossesGasInKind': '0.202',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.012'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.589',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.924',\n", " 'fuelGasLossesGasInKind': '0.162',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.975'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.881',\n", " 'fuelGasLossesGasInKind': '0.126',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.932'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.887',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.938'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.887',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.938'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.587',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.884',\n", " 'fuelGasLossesGasInKind': '0.129',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '0.935'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.966',\n", " 'fuelGasLossesGasInKind': '0.202',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.017'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.964',\n", " 'fuelGasLossesGasInKind': '0.205',\n", " 'entryCapacity': '0.168',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.015'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.972',\n", " 'fuelGasLossesGasInKind': '0.208',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.023'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f55df-08c7-4b6a-8597-fbe9e3f398f8',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.591',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.974',\n", " 'fuelGasLossesGasInKind': '0.21',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.051',\n", " 'totalWithPortCost': '1.025'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.858',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.387',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.893'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.804',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.335',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.839'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.708',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.242',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.743'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.686',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.221',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.012',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.721'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.646',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.18',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.681'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.642',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.176',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.013',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.677'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.634',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.167',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.014',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.669'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.647',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.179',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.682'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.681',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.213',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.015',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.716'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.776',\n", " 'fuelGasLossesGasInKind': '0.009',\n", " 'entryCapacity': '0.306',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.811'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.444',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.869',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.398',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.904'},\n", " {'releaseDate': '2026-01-06',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '003f577c-7058-4b50-9c94-c499c07ca080',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.445',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.951',\n", " 'fuelGasLossesGasInKind': '0.01',\n", " 'entryCapacity': '0.479',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': '0.017',\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.986'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.386',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.447'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.378',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.439'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.378',\n", " 'fuelGasLossesGasInKind': '0.144',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.439'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.375',\n", " 'fuelGasLossesGasInKind': '0.141',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.436'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.377',\n", " 'fuelGasLossesGasInKind': '0.143',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.438'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.38',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.441'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0030d930-6574-4049-a739-327a16620429',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '1.004',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.379',\n", " 'fuelGasLossesGasInKind': '0.145',\n", " 'entryCapacity': '0.127',\n", " 'entryVariable': None,\n", " 'emissions': '0.103',\n", " 'power': None,\n", " 'portCost': '0.061',\n", " 'totalWithPortCost': '1.44'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.247',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.199',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.385'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.226',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.188',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.364'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.198',\n", " 'fuelGasLossesGasInKind': '0.136',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.166',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.336'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.22',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.19',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.358'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.278',\n", " 'fuelGasLossesGasInKind': '0.132',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.25',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.416'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.404',\n", " 'fuelGasLossesGasInKind': '0.132',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.376',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.542'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.405',\n", " 'fuelGasLossesGasInKind': '0.132',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.377',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.543'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.289',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.429',\n", " 'entryVariable': '0.081',\n", " 'emissions': '0.075',\n", " 'power': '0.259',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.427'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.277',\n", " 'fuelGasLossesGasInKind': '0.134',\n", " 'entryCapacity': '0.457',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.22',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.415'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.243',\n", " 'fuelGasLossesGasInKind': '0.142',\n", " 'entryCapacity': '0.457',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.178',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.381'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.311',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.239',\n", " 'fuelGasLossesGasInKind': '0.146',\n", " 'entryCapacity': '0.457',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.075',\n", " 'power': '0.17',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.377'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00317185-978a-4df5-970c-2c28d3ab893c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.318',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.264',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.457',\n", " 'entryVariable': '0.08',\n", " 'emissions': '0.078',\n", " 'power': '0.182',\n", " 'portCost': '0.138',\n", " 'totalWithPortCost': '1.402'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.568',\n", " 'fuelGasLossesGasInKind': '0.163',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.597'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.56',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.589'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.56',\n", " 'fuelGasLossesGasInKind': '0.155',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.589'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.556',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.585'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.556',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.585'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.558',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.587'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.559',\n", " 'fuelGasLossesGasInKind': '0.154',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.588'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.558',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.587'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.557',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.586'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.558',\n", " 'fuelGasLossesGasInKind': '0.153',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.587'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.562',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.591'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00319041-261a-45f8-b4a0-826c4bbc5947',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.198',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.561',\n", " 'fuelGasLossesGasInKind': '0.156',\n", " 'entryCapacity': '0.207',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.029',\n", " 'totalWithPortCost': '0.59'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.193',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.413',\n", " 'fuelGasLossesGasInKind': '0.13',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.448'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.399',\n", " 'fuelGasLossesGasInKind': '0.127',\n", " 'entryCapacity': '0.059',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.434'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.376',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.411'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.362',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.397'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.35',\n", " 'fuelGasLossesGasInKind': '0.115',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.385'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.353',\n", " 'fuelGasLossesGasInKind': '0.118',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.388'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.355',\n", " 'fuelGasLossesGasInKind': '0.12',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.39'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.364',\n", " 'fuelGasLossesGasInKind': '0.122',\n", " 'entryCapacity': '0.03',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.399'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.381',\n", " 'fuelGasLossesGasInKind': '0.121',\n", " 'entryCapacity': '0.048',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.416'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.194',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.398',\n", " 'fuelGasLossesGasInKind': '0.122',\n", " 'entryCapacity': '0.064',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.433'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.409',\n", " 'fuelGasLossesGasInKind': '0.123',\n", " 'entryCapacity': '0.073',\n", " 'entryVariable': '0.007',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.444'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0031994e-f370-4927-ba88-a4e7a78c42db',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.195',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.001',\n", " 'additionalSendout': '0.01',\n", " 'totalRegasCost': '0.422',\n", " 'fuelGasLossesGasInKind': '0.128',\n", " 'entryCapacity': '0.08',\n", " 'entryVariable': '0.008',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.035',\n", " 'totalWithPortCost': '0.457'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.329',\n", " 'fuelGasLossesGasInKind': '0.02',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.382'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.327',\n", " 'fuelGasLossesGasInKind': '0.018',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.38'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032d353-d0d8-4454-9b6c-a6c5db12e49d',\n", " 'slotUnloadStorageRegas': '0.081',\n", " 'slotBerth': '0.007',\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': '0.027',\n", " 'additionalSendout': '0.052',\n", " 'totalRegasCost': '0.328',\n", " 'fuelGasLossesGasInKind': '0.019',\n", " 'entryCapacity': '0.142',\n", " 'entryVariable': '0.0',\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.053',\n", " 'totalWithPortCost': '0.381'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.872',\n", " 'fuelGasLossesGasInKind': '0.159',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.989'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.87',\n", " 'fuelGasLossesGasInKind': '0.157',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.987'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.862',\n", " 'fuelGasLossesGasInKind': '0.149',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.979'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.86',\n", " 'fuelGasLossesGasInKind': '0.147',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.977'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.861',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.978'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.861',\n", " 'fuelGasLossesGasInKind': '0.148',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.978'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.864',\n", " 'fuelGasLossesGasInKind': '0.151',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.981'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.865',\n", " 'fuelGasLossesGasInKind': '0.152',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.982'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.867',\n", " 'fuelGasLossesGasInKind': '0.154',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.984'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '0.869',\n", " 'fuelGasLossesGasInKind': '0.156',\n", " 'entryCapacity': '0.071',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '0.986'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '0032fecd-cec3-422b-939e-75aecc32f94c',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.548',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': '0.094',\n", " 'totalRegasCost': '1.082',\n", " 'fuelGasLossesGasInKind': '0.158',\n", " 'entryCapacity': '0.282',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.117',\n", " 'totalWithPortCost': '1.199'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.942',\n", " 'fuelGasLossesGasInKind': '0.108',\n", " 'entryCapacity': '0.471',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.0'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.859',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.393',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.917'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.736',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.27',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.794'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.673',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.21',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.731'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.632',\n", " 'fuelGasLossesGasInKind': '0.1',\n", " 'entryCapacity': '0.169',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.69'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.638',\n", " 'fuelGasLossesGasInKind': '0.102',\n", " 'entryCapacity': '0.173',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.696'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.662',\n", " 'fuelGasLossesGasInKind': '0.102',\n", " 'entryCapacity': '0.197',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.72'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.685',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.221',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.743'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.854',\n", " 'fuelGasLossesGasInKind': '0.101',\n", " 'entryCapacity': '0.39',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.912'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.939',\n", " 'fuelGasLossesGasInKind': '0.102',\n", " 'entryCapacity': '0.474',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '0.997'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.047',\n", " 'fuelGasLossesGasInKind': '0.104',\n", " 'entryCapacity': '0.58',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.105'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00332c69-88d1-4a7a-bcc7-0da39e850e90',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.363',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.053',\n", " 'fuelGasLossesGasInKind': '0.103',\n", " 'entryCapacity': '0.587',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.058',\n", " 'totalWithPortCost': '1.111'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.836',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.108',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.898'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.836',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.108',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.898'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'deliveryMonthName': 'Jun26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'deliveryMonthName': 'Jul26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'deliveryMonthName': 'Aug26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'deliveryMonthName': 'Sep26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'deliveryMonthName': 'Oct26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'deliveryMonthName': 'Nov26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'deliveryMonthName': 'Dec26',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.728',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.839',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.901'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'deliveryMonthName': 'Jan27',\n", " 'terminalUuid': '00338f3f-8875-435d-87a9-f83d9a5c5241',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': None,\n", " 'slotLtCapacityEstimate': '0.746',\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '0.857',\n", " 'fuelGasLossesGasInKind': '0.0',\n", " 'entryCapacity': '0.111',\n", " 'entryVariable': None,\n", " 'emissions': None,\n", " 'power': None,\n", " 'portCost': '0.062',\n", " 'totalWithPortCost': '0.919'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-02-01',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'deliveryMonthName': 'Feb26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.034',\n", " 'fuelGasLossesGasInKind': '0.095',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.093'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-03-01',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'deliveryMonthName': 'Mar26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.033',\n", " 'fuelGasLossesGasInKind': '0.094',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.092'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-04-01',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'deliveryMonthName': 'Apr26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.029',\n", " 'fuelGasLossesGasInKind': '0.09',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.088'},\n", " {'releaseDate': '2026-01-07',\n", " 'deliveryMonth': '2026-05-01',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'deliveryMonthName': 'May26',\n", " 'terminalUuid': '003497c6-ed32-412f-95ef-c3b1f962464e',\n", " 'slotUnloadStorageRegas': None,\n", " 'slotBerth': None,\n", " 'slotBerthUnloadStorageRegas': '0.661',\n", " 'slotLtCapacityEstimate': None,\n", " 'additionalStorage': None,\n", " 'additionalSendout': None,\n", " 'totalRegasCost': '1.028',\n", " 'fuelGasLossesGasInKind': '0.089',\n", " 'entryCapacity': '0.166',\n", " 'entryVariable': '0.062',\n", " 'emissions': '0.05',\n", " 'power': None,\n", " 'portCost': '0.059',\n", " 'totalWithPortCost': '1.087'},\n", " ...],\n", " 'metaData': {'unit': 'usd-per-mmbtu',\n", " 'visibility': 'complete',\n", " 'terminals': {'0030d930-6574-4049-a739-327a16620429': 'Ravenna',\n", " '00317185-978a-4df5-970c-2c28d3ab893c': 'Isle of Grain',\n", " '00319041-261a-45f8-b4a0-826c4bbc5947': 'Revithoussa',\n", " '0031994e-f370-4927-ba88-a4e7a78c42db': 'Zeebrugge',\n", " '0032d353-d0d8-4454-9b6c-a6c5db12e49d': 'Spain TVB',\n", " '0032fecd-cec3-422b-939e-75aecc32f94c': 'Świnoujście',\n", " '00332c69-88d1-4a7a-bcc7-0da39e850e90': 'KRK',\n", " '00338f3f-8875-435d-87a9-f83d9a5c5241': 'Dunkerque',\n", " '003497c6-ed32-412f-95ef-c3b1f962464e': 'Brunsbuttel',\n", " '00352746-7b90-4f69-a995-6048f670c1b8': 'Alexandroupolis',\n", " '00355021-dc45-4aaa-8178-a6dc360c07b9': 'OLT Toscana',\n", " '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f': 'Le Havre',\n", " '003660ee-567d-4d23-9e43-2891509b7bfb': 'Piombino',\n", " '00378624-8afa-4cce-987e-e76cebe077ab': 'Wilhelmshaven 2',\n", " '0037d9e4-cf09-4f26-8934-f1e038e185ea': 'EemsEnergyTerminal',\n", " '0038a35c-253f-44f5-a4e5-d5240d98039a': 'Adriatic',\n", " '003b1adb-f810-443c-a971-c2a6b28cb5dc': 'Fos Cavaou',\n", " '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f': 'Montoir',\n", " '003b1d36-d72b-4331-888f-22b3f84c1cce': 'Wilhelmshaven 1',\n", " '003bf9ab-2829-40a1-a83d-c32b764f21fd': 'South Hook',\n", " '003d153e-282a-47a1-bb0c-b4fe0bc62d38': 'Inkoo',\n", " '003e3e70-3626-4124-8ee9-d3ec39678e8c': 'Deutsche Ostsee',\n", " '003e9c62-1047-45c4-a0e2-ebba5d73cf3b': 'Sines',\n", " '003f55df-08c7-4b6a-8597-fbe9e3f398f8': 'Klaipeda',\n", " '003f577c-7058-4b50-9c94-c499c07ca080': 'Gate'}}}" ] }, "execution_count": 145, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Calling historical data - JSON response\n", "\n", "json_data = fetch_historical_price_releases(access_token, vessel_size='174000', unit='usd-per-mmbtu', start='2026-01-01', end='2026-01-10')\n", "json_data" ] }, { "cell_type": "code", "execution_count": 146, "id": "23f95f71", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'unit': 'usd-per-mmbtu',\n", " 'visibility': 'complete',\n", " 'terminals': {'0030d930-6574-4049-a739-327a16620429': 'Ravenna',\n", " '00317185-978a-4df5-970c-2c28d3ab893c': 'Isle of Grain',\n", " '00319041-261a-45f8-b4a0-826c4bbc5947': 'Revithoussa',\n", " '0031994e-f370-4927-ba88-a4e7a78c42db': 'Zeebrugge',\n", " '0032d353-d0d8-4454-9b6c-a6c5db12e49d': 'Spain TVB',\n", " '0032fecd-cec3-422b-939e-75aecc32f94c': 'Świnoujście',\n", " '00332c69-88d1-4a7a-bcc7-0da39e850e90': 'KRK',\n", " '00338f3f-8875-435d-87a9-f83d9a5c5241': 'Dunkerque',\n", " '003497c6-ed32-412f-95ef-c3b1f962464e': 'Brunsbuttel',\n", " '00352746-7b90-4f69-a995-6048f670c1b8': 'Alexandroupolis',\n", " '00355021-dc45-4aaa-8178-a6dc360c07b9': 'OLT Toscana',\n", " '00361ab8-f70d-4a08-8e45-e6eb5a0b8b2f': 'Le Havre',\n", " '003660ee-567d-4d23-9e43-2891509b7bfb': 'Piombino',\n", " '00378624-8afa-4cce-987e-e76cebe077ab': 'Wilhelmshaven 2',\n", " '0037d9e4-cf09-4f26-8934-f1e038e185ea': 'EemsEnergyTerminal',\n", " '0038a35c-253f-44f5-a4e5-d5240d98039a': 'Adriatic',\n", " '003b1adb-f810-443c-a971-c2a6b28cb5dc': 'Fos Cavaou',\n", " '003b1d25-f4bd-43bf-9cf6-9bd38216fe0f': 'Montoir',\n", " '003b1d36-d72b-4331-888f-22b3f84c1cce': 'Wilhelmshaven 1',\n", " '003bf9ab-2829-40a1-a83d-c32b764f21fd': 'South Hook',\n", " '003d153e-282a-47a1-bb0c-b4fe0bc62d38': 'Inkoo',\n", " '003e3e70-3626-4124-8ee9-d3ec39678e8c': 'Deutsche Ostsee',\n", " '003e9c62-1047-45c4-a0e2-ebba5d73cf3b': 'Sines',\n", " '003f55df-08c7-4b6a-8597-fbe9e3f398f8': 'Klaipeda',\n", " '003f577c-7058-4b50-9c94-c499c07ca080': 'Gate'}}" ] }, "execution_count": 146, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# checking metaData\n", "json_data['metaData']" ] }, { "cell_type": "markdown", "id": "047ebd7a", "metadata": {}, "source": [ "#### CSV Response" ] }, { "cell_type": "code", "execution_count": 147, "id": "5670a704", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/lng/access/regas-costs/?vessel-size=174000&unit=usd-per-mmbtu&start=2026-01-01&end=2026-01-10\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", "
ReleaseDateDeliveryMonthDeliveryMonthNameDeliveryMonthIndexTerminalUUIDTerminalNameVesselSizeSlotBerthSlotUnloadStorageRegasSlotBerthUnloadStorageRegas...AdditionalStorageAdditionalSendoutFuelGasLossesGasInKindEntryCapacityEntryVariableEmissionsPowerTotalRegasCostPortCostTotalWithPortCost
02026-01-022026-02-01Feb26M+10030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.01...NaNNaN0.1520.127NaN0.104NaN1.3930.0621.455
12026-01-022026-03-01Mar26M+20030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.01...NaNNaN0.1460.127NaN0.104NaN1.3870.0621.449
22026-01-022026-04-01Apr26M+30030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.01...NaNNaN0.1470.127NaN0.104NaN1.3880.0621.450
32026-01-022026-05-01May26M+40030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.01...NaNNaN0.1440.127NaN0.104NaN1.3850.0621.447
42026-01-022026-06-01Jun26M+50030d930-6574-4049-a739-327a16620429Ravenna174000NaNNaN1.01...NaNNaN0.1440.127NaN0.104NaN1.3850.0621.447
\n", "

5 rows × 21 columns

\n", "
" ], "text/plain": [ " ReleaseDate DeliveryMonth DeliveryMonthName DeliveryMonthIndex \\\n", "0 2026-01-02 2026-02-01 Feb26 M+1 \n", "1 2026-01-02 2026-03-01 Mar26 M+2 \n", "2 2026-01-02 2026-04-01 Apr26 M+3 \n", "3 2026-01-02 2026-05-01 May26 M+4 \n", "4 2026-01-02 2026-06-01 Jun26 M+5 \n", "\n", " TerminalUUID TerminalName VesselSize SlotBerth \\\n", "0 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "1 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "2 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "3 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "4 0030d930-6574-4049-a739-327a16620429 Ravenna 174000 NaN \n", "\n", " SlotUnloadStorageRegas SlotBerthUnloadStorageRegas ... \\\n", "0 NaN 1.01 ... \n", "1 NaN 1.01 ... \n", "2 NaN 1.01 ... \n", "3 NaN 1.01 ... \n", "4 NaN 1.01 ... \n", "\n", " AdditionalStorage AdditionalSendout FuelGasLossesGasInKind \\\n", "0 NaN NaN 0.152 \n", "1 NaN NaN 0.146 \n", "2 NaN NaN 0.147 \n", "3 NaN NaN 0.144 \n", "4 NaN NaN 0.144 \n", "\n", " EntryCapacity EntryVariable Emissions Power TotalRegasCost PortCost \\\n", "0 0.127 NaN 0.104 NaN 1.393 0.062 \n", "1 0.127 NaN 0.104 NaN 1.387 0.062 \n", "2 0.127 NaN 0.104 NaN 1.388 0.062 \n", "3 0.127 NaN 0.104 NaN 1.385 0.062 \n", "4 0.127 NaN 0.104 NaN 1.385 0.062 \n", "\n", " TotalWithPortCost \n", "0 1.455 \n", "1 1.449 \n", "2 1.450 \n", "3 1.447 \n", "4 1.447 \n", "\n", "[5 rows x 21 columns]" ] }, "execution_count": 147, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# fetching the data in CSV format\n", "csv_data = fetch_historical_price_releases(access_token, vessel_size='174000', unit='usd-per-mmbtu', start='2026-01-01', end='2026-01-10', format='csv')\n", "csv_data.head(5)" ] }, { "cell_type": "code", "execution_count": 148, "id": "cf9b9685", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Index(['ReleaseDate', 'DeliveryMonth', 'DeliveryMonthName',\n", " 'DeliveryMonthIndex', 'TerminalUUID', 'TerminalName', 'VesselSize',\n", " 'SlotBerth', 'SlotUnloadStorageRegas', 'SlotBerthUnloadStorageRegas',\n", " 'SlotLtCapacityCostEstimate', 'AdditionalStorage', 'AdditionalSendout',\n", " 'FuelGasLossesGasInKind', 'EntryCapacity', 'EntryVariable', 'Emissions',\n", " 'Power', 'TotalRegasCost', 'PortCost', 'TotalWithPortCost'],\n", " dtype='object')" ] }, "execution_count": 148, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# listing the column names of the DataFrame\n", "csv_data.columns" ] }, { "cell_type": "markdown", "id": "478ab97b", "metadata": {}, "source": [ "#### Using terminal_uuid parameter to retrieve one terminal's data only" ] }, { "cell_type": "code", "execution_count": 149, "id": "7bd327e0", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/lng/access/regas-costs/?vessel-size=174000&unit=usd-per-mmbtu&start=2026-01-01&end=2026-01-10&terminal-uuid=003b1d25-f4bd-43bf-9cf6-9bd38216fe0f\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", "
ReleaseDateDeliveryMonthDeliveryMonthNameDeliveryMonthIndexTerminalUUIDTerminalNameVesselSizeSlotBerthSlotUnloadStorageRegasSlotBerthUnloadStorageRegas...AdditionalStorageAdditionalSendoutFuelGasLossesGasInKindEntryCapacityEntryVariableEmissionsPowerTotalRegasCostPortCostTotalWithPortCost
02026-01-022026-02-01Feb26M+1003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir1740000.0280.229NaN...NaN0.0180.0490.109NaN0.035NaN0.4680.0540.522
12026-01-022026-03-01Mar26M+2003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir1740000.0280.229NaN...NaN0.0180.0480.109NaN0.035NaN0.4670.0540.521
22026-01-022026-04-01Apr26M+3003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir1740000.0280.229NaN...NaN0.0180.0470.112NaN0.035NaN0.4690.0540.523
32026-01-022026-05-01May26M+4003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir1740000.0280.229NaN...NaN0.0180.0460.112NaN0.035NaN0.4680.0540.522
42026-01-022026-06-01Jun26M+5003b1d25-f4bd-43bf-9cf6-9bd38216fe0fMontoir1740000.0280.229NaN...NaN0.0180.0460.112NaN0.035NaN0.4680.0540.522
\n", "

5 rows × 21 columns

\n", "
" ], "text/plain": [ " ReleaseDate DeliveryMonth DeliveryMonthName DeliveryMonthIndex \\\n", "0 2026-01-02 2026-02-01 Feb26 M+1 \n", "1 2026-01-02 2026-03-01 Mar26 M+2 \n", "2 2026-01-02 2026-04-01 Apr26 M+3 \n", "3 2026-01-02 2026-05-01 May26 M+4 \n", "4 2026-01-02 2026-06-01 Jun26 M+5 \n", "\n", " TerminalUUID TerminalName VesselSize SlotBerth \\\n", "0 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir 174000 0.028 \n", "1 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir 174000 0.028 \n", "2 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir 174000 0.028 \n", "3 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir 174000 0.028 \n", "4 003b1d25-f4bd-43bf-9cf6-9bd38216fe0f Montoir 174000 0.028 \n", "\n", " SlotUnloadStorageRegas SlotBerthUnloadStorageRegas ... \\\n", "0 0.229 NaN ... \n", "1 0.229 NaN ... \n", "2 0.229 NaN ... \n", "3 0.229 NaN ... \n", "4 0.229 NaN ... \n", "\n", " AdditionalStorage AdditionalSendout FuelGasLossesGasInKind \\\n", "0 NaN 0.018 0.049 \n", "1 NaN 0.018 0.048 \n", "2 NaN 0.018 0.047 \n", "3 NaN 0.018 0.046 \n", "4 NaN 0.018 0.046 \n", "\n", " EntryCapacity EntryVariable Emissions Power TotalRegasCost PortCost \\\n", "0 0.109 NaN 0.035 NaN 0.468 0.054 \n", "1 0.109 NaN 0.035 NaN 0.467 0.054 \n", "2 0.112 NaN 0.035 NaN 0.469 0.054 \n", "3 0.112 NaN 0.035 NaN 0.468 0.054 \n", "4 0.112 NaN 0.035 NaN 0.468 0.054 \n", "\n", " TotalWithPortCost \n", "0 0.522 \n", "1 0.521 \n", "2 0.523 \n", "3 0.522 \n", "4 0.522 \n", "\n", "[5 rows x 21 columns]" ] }, "execution_count": 149, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# choosing terminal and retrieving relevant UUID\n", "term_name = 'Montoir'\n", "term_uuid = ref_data[ref_data['TerminalName'] == term_name]['TerminalUUID'].iloc[0]\n", "\n", "# fetching the filtered data in CSV format\n", "term_data = fetch_historical_price_releases(access_token, vessel_size='174000', unit='usd-per-mmbtu', start='2026-01-01', end='2026-01-10', \\\n", " terminal_uuid=term_uuid, format='csv')\n", "term_data.head(5)" ] }, { "cell_type": "markdown", "id": "4836a33a", "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": 150, "id": "29a5ce06", "metadata": {}, "outputs": [], "source": [ "import datetime\n", "\n", "def loop_historical_data(token, hist_vessel, hist_unit, hist_start, hist_end):\n", " \n", " hist_diff = (datetime.datetime.strptime(hist_end, '%Y-%m-%d') - datetime.datetime.strptime(hist_start, '%Y-%m-%d')).days\n", " t = 0\n", "\n", " starts = []\n", " ends = []\n", "\n", " # window size\n", " w=365\n", "\n", " while t < hist_diff:\n", " #initialising dataframe\n", " if t == 0:\n", " diff_end = datetime.datetime.strftime(datetime.datetime.strptime(hist_start, '%Y-%m-%d') + pd.Timedelta(w, unit='days'), '%Y-%m-%d')\n", " hist_df = fetch_historical_price_releases(access_token, vessel_size=hist_vessel, unit=hist_unit, start=hist_start, end=diff_end, format='csv')\n", "\n", " starts.append(hist_start)\n", " ends.append(diff_end)\n", " # appending more historical data\n", " else:\n", " if t < hist_diff-w:\n", " diff_start = datetime.datetime.strftime(datetime.datetime.strptime(hist_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_historical_price_releases(access_token, vessel_size=hist_vessel, unit=hist_unit, start=diff_start, end=diff_end, 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", " starts.append(hist_start)\n", " ends.append(diff_end)\n", " else:\n", " diff_start = datetime.datetime.strftime(datetime.datetime.strptime(hist_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_historical_price_releases(access_token, vessel_size=hist_vessel, unit=hist_unit, start=diff_start, end=diff_end, format='csv')\n", " hist_df = pd.concat([hist_df, historical_addition])\n", " starts.append(hist_start)\n", " ends.append(diff_end)\n", " \n", " #looping by year\n", " t += w\n", "\n", " for c in list(hist_df.columns)[6:]:\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" ] } ], "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.11.5" } }, "nbformat": 4, "nbformat_minor": 5 }