{ "cells": [ { "cell_type": "markdown", "id": "59d19f73", "metadata": {}, "source": [ "# Python API Example - Freight Route Data Import\n", "## Importing Route Data into a Pandas DataFrame\n", "\n", "Here we import shipping route data from the Spark Python API. \n", "\n", "We then store in a DataFrame for easy exploration and filtering.\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 how to format those outputs to enable easy reading and analysis\n", "- This script can be copy and pasted by customers for quick use of the API\n", "- Once comfortable with the process, you can change the variables that are called to produce your own custom analysis products. (Section 2 onwards in this guide).\n", "\n", "__N.B. This guide is just for Freight route data. If you're looking for other API data products (such as Price releases or Netbacks), please refer to their according code example files.__ " ] }, { "cell_type": "markdown", "id": "05c5e491", "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/routes.html" ] }, { "cell_type": "markdown", "id": "9e00ae34", "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": 1, "id": "4f265f07", "metadata": {}, "outputs": [], "source": [ "## Importing libraries for calling the API\n", "import json\n", "import os\n", "import sys\n", "from base64 import b64encode\n", "from urllib.parse import urljoin\n", "import pandas as pd\n", "\n", "\n", "try:\n", " from urllib import request, parse\n", " from urllib.error import HTTPError\n", "except ImportError:\n", " raise RuntimeError(\"Python 3 required\")" ] }, { "cell_type": "code", "execution_count": 2, "id": "c32eb493", "metadata": {}, "outputs": [], "source": [ "## Defining functions for API request\n", "\n", "API_BASE_URL = \"https://api.sparkcommodities.com\"\n", "\n", "\n", "def retrieve_credentials(file_path=None):\n", " \"\"\"\n", " Find credentials either by reading the client_credentials file or reading\n", " environment variables\n", " \"\"\"\n", " if file_path is None:\n", " client_id = os.getenv(\"SPARK_CLIENT_ID\")\n", " client_secret = os.getenv(\"SPARK_CLIENT_SECRET\")\n", " if not client_id or not client_secret:\n", " raise RuntimeError(\n", " \"SPARK_CLIENT_ID and SPARK_CLIENT_SECRET environment vars required\"\n", " )\n", " else:\n", " # Parse the file\n", " if not os.path.isfile(file_path):\n", " raise RuntimeError(\"The file {} doesn't exist\".format(file_path))\n", "\n", " with open(file_path) as fp:\n", " lines = [l.replace(\"\\n\", \"\") for l in fp.readlines()]\n", "\n", " if lines[0] in (\"clientId,clientSecret\", \"client_id,client_secret\"):\n", " client_id, client_secret = lines[1].split(\",\")\n", " else:\n", " print(\"First line read: '{}'\".format(lines[0]))\n", " raise RuntimeError(\n", " \"The specified file {} doesn't look like to be a Spark API client \"\n", " \"credentials file\".format(file_path)\n", " )\n", "\n", " print(\">>>> Found credentials!\")\n", " print(\n", " \">>>> Client_id={}, client_secret={}****\".format(client_id, client_secret[:5])\n", " )\n", "\n", " return client_id, client_secret\n", "\n", "\n", "def do_api_post_query(uri, body, headers):\n", " \"\"\"\n", " OAuth2 authentication requires a POST request with client credentials before accessing the API. \n", " This POST request will return an Access Token which will be used for the API GET request.\n", " \"\"\"\n", " url = urljoin(API_BASE_URL, uri)\n", "\n", " data = json.dumps(body).encode(\"utf-8\")\n", "\n", " # HTTP POST request\n", " req = request.Request(url, data=data, headers=headers)\n", " try:\n", " response = request.urlopen(req)\n", " except HTTPError as e:\n", " print(\"HTTP Error: \", e.code)\n", " print(e.read())\n", " sys.exit(1)\n", "\n", " resp_content = response.read()\n", "\n", " # The server must return HTTP 201. Raise an error if this is not the case\n", " assert response.status == 201, resp_content\n", "\n", " # The server returned a JSON response\n", " content = json.loads(resp_content)\n", "\n", " return content\n", "\n", "\n", "def do_api_get_query(uri, access_token):\n", " \"\"\"\n", " After receiving an Access Token, we can request information from the API.\n", " \"\"\"\n", " url = urljoin(API_BASE_URL, uri)\n", "\n", " headers = {\n", " \"Authorization\": \"Bearer {}\".format(access_token),\n", " \"Accept\": \"application/json\",\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", "\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", " # The server returned a JSON response\n", " content = json.loads(resp_content)\n", "\n", " return content\n", "\n", "\n", "def get_access_token(client_id, client_secret):\n", " \"\"\"\n", " Get a new access_token. Access tokens are the thing that applications use to make\n", " API requests. Access tokens must be kept confidential in storage.\n", "\n", " # Procedure:\n", "\n", " Do a POST query with `grantType` and `scopes` in the body. A basic authorization\n", " HTTP header is required. The \"Basic\" HTTP authentication scheme is defined in\n", " RFC 7617, which transmits credentials as `clientId:clientSecret` pairs, encoded\n", " using base64.\n", " \"\"\"\n", "\n", " # Note: for the sake of this example, we choose to use the Python urllib from the\n", " # standard lib. One should consider using https://requests.readthedocs.io/\n", "\n", " payload = \"{}:{}\".format(client_id, client_secret).encode()\n", " headers = {\n", " \"Authorization\": b64encode(payload).decode(),\n", " \"Accept\": \"application/json\",\n", " \"Content-Type\": \"application/json\",\n", " }\n", " body = {\n", " \"grantType\": \"clientCredentials\",\n", " \"scopes\": \"read:prices,read:routes\",\n", " }\n", "\n", " content = do_api_post_query(uri=\"/oauth/token/\", body=body, headers=headers)\n", "\n", " print(\n", " \">>>> Successfully fetched an access token {}****, valid {} seconds.\".format(\n", " content[\"accessToken\"][:5], content[\"expiresIn\"]\n", " )\n", " )\n", "\n", " return content[\"accessToken\"]" ] }, { "cell_type": "markdown", "id": "bec1f77b", "metadata": {}, "source": [ "## Defining Fetch Request\n", "\n", "Here is where we define what type of data we want to fetch from the API.\n", "\n", "In my fetch request, I use the URL:\n", "\n", "__uri=\"/v1.0/routes/\"__\n", "\n", "This is to query shipping route data specifically. Other data products (such as price releases) require different URL's in the fetch request (refer to other Python API examples)." ] }, { "cell_type": "code", "execution_count": 3, "id": "fb27e003", "metadata": {}, "outputs": [], "source": [ "## Define function for listing routes from API\n", "def list_routes(access_token):\n", " \"\"\"\n", " Fetch available routes. Return route ids and Spark price release dates.\n", "\n", " The URI used returns a list of all available Spark routes. With these routes, we can find the price breakdown of a specific route.\n", "\n", " # Procedure:\n", "\n", " Do a GET query to /v1.0/routes/ with a Bearer token authorization HTTP header.\n", " \"\"\"\n", " content = do_api_get_query(uri=\"/v1.0/routes/\", access_token=access_token)\n", "\n", " print(\">>>> All the routes you can fetch\")\n", " tickers = []\n", " for contract in content[\"data\"][\"routes\"]:\n", " tickers.append(contract[\"uuid\"])\n", "\n", " reldates = content[\"data\"][\"sparkReleaseDates\"]\n", "\n", " dicto1 = content[\"data\"]\n", "\n", " return tickers, reldates, dicto1" ] }, { "cell_type": "markdown", "id": "1e890e9e", "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", "\n", "The code then prints:\n", "- the number of callable routes available\n", "- the number of Spark freight price dates that are callable" ] }, { "cell_type": "code", "execution_count": 4, "id": "51b8a89c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ ">>>> Found credentials!\n", ">>>> Client_id=875f483b-19de-421a-8e9b-dceff6703e83, client_secret=6cdf8****\n", ">>>> Successfully fetched an access token eyJhb****, valid 604799 seconds.\n", ">>>> All the routes you can fetch\n" ] } ], "source": [ "## Input your file location here\n", "client_id, client_secret = retrieve_credentials(file_path=\"/tmp/client_credentials.csv\")\n", "\n", "\n", "# Authenticate:\n", "access_token = get_access_token(client_id, client_secret)\n", "\n", "# Fetch all contracts:\n", "routes, reldates, dicto1 = list_routes(access_token)" ] }, { "cell_type": "markdown", "id": "2345f33a", "metadata": {}, "source": [ "# 2. Describing available routes\n", "\n", "We have now saved all available routes as a dictionary. We can check how this looks, and then filter the routes by several characteristics." ] }, { "cell_type": "code", "execution_count": 34, "id": "9a127827", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'routes': [{'uuid': 'b316d72f-00d2-4efa-b393-84efe7ccf131', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '68087453-2e63-47fa-8f7b-f2fe2a08c01f', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '526b5467-ec75-4858-bf84-8f3d32b4329a', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': 'e2b81f8d-06dd-4c2e-a007-3437d0da6e06', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '9be6331b-9ee5-4211-a6d3-e7fd3922abe8', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '2abc1d03-1992-4a43-a4e2-eb47655bb1fa', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': 'a195c484-dcd6-46e0-b3b5-1ef92e12ef95', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': 'bef6f9b6-18d2-4c99-b3b2-a6d42067e4bd', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '021289e3-8415-4136-bb43-f63994e249f9', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'suez'}, {'uuid': 'b884eceb-da65-4a49-98fa-98913f34f800', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '1d516ce9-c8bf-4ee3-a404-8c011d70c9c1', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'b5fc50e6-199a-4c44-85a2-3e9e54cfe4e9', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '9780b0aa-8313-4449-9345-5927db807bfb', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': 'fe781352-811c-4a1c-9b38-673809e88408', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '1d45ca73-6017-43a1-9b83-a444ba8b5a97', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'ae2e2297-0a60-4cff-b8b4-9b5c36f91f26', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '226135c0-8844-43fc-b836-c369885d18e5', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '98b70a98-1728-4b62-88df-1e07b04917f8', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '006709e4-381d-45ae-a25a-b54b2aa99c17', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '6460654a-f79c-40ce-bdfa-279c05b6ab3c', 'loadPort': {'uuid': '03018806-b536-439c-9636-bf615b2c53f6', 'type': 'export', 'region': 'pacific', 'name': 'Gorgon'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': 'cd4f4992-5ed5-476a-b605-3320b162cd6e', 'loadPort': {'uuid': '12090931-bbca-41bb-90cd-b359cf017c01', 'type': 'export', 'region': 'pacific', 'name': 'Bontang'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '41941afe-f797-480d-b8e2-8dfbe17c8752', 'loadPort': {'uuid': '173113cd-f229-4585-a647-6736c02f67c9', 'type': 'export', 'region': 'pacific', 'name': 'Wheatstone'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'b0120cd3-52f5-4d69-85f7-f37f337b9442', 'loadPort': {'uuid': '173113cd-f229-4585-a647-6736c02f67c9', 'type': 'export', 'region': 'pacific', 'name': 'Wheatstone'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '42ff8cfb-3f94-4a50-b5ec-9ff0d7a8d709', 'loadPort': {'uuid': '1ceab408-0ae4-452d-aa4b-da6262072613', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'e56f097b-71f4-499f-b195-b0cc18949d77', 'loadPort': {'uuid': '1ceab408-0ae4-452d-aa4b-da6262072613', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'a2841a62-8a83-444c-95fa-cb3a91b90419', 'loadPort': {'uuid': '1ceab408-0ae4-452d-aa4b-da6262072613', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '7ea65509-e739-4f21-a69b-9fd4a4b72b32', 'loadPort': {'uuid': '1ceab408-0ae4-452d-aa4b-da6262072613', 'type': 'export', 'region': 'atlantic', 'name': 'Altamira'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'c65d0d2d-69d3-4cdb-a72d-c354da3946ee', 'loadPort': {'uuid': '1f4b3db1-1d01-42d3-b8a5-50c8b113006e', 'type': 'export', 'region': 'atlantic', 'name': 'Puerto Libertad'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'f18c7efb-b257-4289-a891-3b2fe9a3b05a', 'loadPort': {'uuid': '1f4b3db1-1d01-42d3-b8a5-50c8b113006e', 'type': 'export', 'region': 'atlantic', 'name': 'Puerto Libertad'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '49730e60-3f5b-4a4b-a503-01461ff632c5', 'loadPort': {'uuid': '39a76204-c5cb-43ce-bef9-7ceafd4ff758', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '203362d2-6518-40f9-8b07-7c4ad003f77d', 'loadPort': {'uuid': '39a76204-c5cb-43ce-bef9-7ceafd4ff758', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '1225d6b2-7ad1-40a7-a7e9-7cd2e1e37931', 'loadPort': {'uuid': '39a76204-c5cb-43ce-bef9-7ceafd4ff758', 'type': 'export', 'region': 'atlantic', 'name': 'LNG Canada'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': 'e8726255-1591-41db-aeff-6d6506b6fbb8', 'loadPort': {'uuid': '4011700f-1bae-4e60-81a0-cf10be07536d', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'dff6637f-e29a-4d1e-b859-e5177e417b55', 'loadPort': {'uuid': '4011700f-1bae-4e60-81a0-cf10be07536d', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '0b1b651a-3e24-4f2d-9367-3f99c9219f93', 'loadPort': {'uuid': '4011700f-1bae-4e60-81a0-cf10be07536d', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': 'cbbfc41a-e757-4d16-86ac-3df46520e260', 'loadPort': {'uuid': '4011700f-1bae-4e60-81a0-cf10be07536d', 'type': 'export', 'region': 'atlantic', 'name': 'Delfin FLNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '2f15b972-45eb-42d7-b837-945a401fd80d', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '836a5fca-3ac9-4b74-8bb6-2f8591552067', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': 'd1c097dd-0578-4f25-98f7-b942ecca14c8', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': 'a013a5c3-638f-4b6d-bd3f-91c642d13b0d', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': 'e6770ed7-abac-4e6f-a1c8-5287340c7bc6', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '06b30319-fcb6-4968-b0bc-af2f67df32ea', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': 'c8671cfc-8dfd-4c9c-9bfc-5dcff1307869', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '48a9a591-4f23-4f88-9f22-0190bca45b68', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '359610bf-bd66-4fb6-836c-264c6722f78e', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '2eac3aa0-6e11-4597-8474-8636fb4b98fc', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': 'c520b321-2ffd-4051-afce-00049d91b4ed', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '849619f2-16f9-492b-9763-aa1b21081297', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '35cc5509-512c-4709-ae79-ca59fc49d34b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '594cc114-c0a6-4ce9-9795-45acd1bfa4f1', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': 'f0c6d6d5-a2a0-4b7e-a131-9ceb0da4aca9', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': 'b18d3995-9292-406c-a754-66c172bc5e20', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '654dd04f-e591-428c-bfd1-2851166e5f86', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '29bf9a32-1be7-4f4f-948a-d841f23e4b3a', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': None}, {'uuid': '6ce04db8-7091-4104-a982-8aa97d7f7e0c', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '2d4b259b-1fb1-4227-8ae4-af252b086f0a', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': 'b6561705-6054-45da-88da-c742c99a969b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '32e2f81d-45ae-45a6-9d18-87683f7852e5', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '1a0407ab-5196-47f9-9c0b-f8dc29001fe8', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': 'ac8d3e41-b1b1-45e0-a70f-768c4d4c483c', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '9e9efdb8-77f9-47b1-aec6-8e2c80ec4807', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '492a7bca-7275-4a13-b466-09b7ca1d83f1', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '8703f3a4-6dce-4616-a1c2-b56e58f7c630', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '72c3674f-0a3e-4ea9-b1ca-40582058767b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': 'f6433545-5bff-4ed3-8e41-74e864366c87', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': 'd1292f9f-6177-4a10-9342-925c8ce98f8b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '4486d80c-1eae-4109-98cf-7ae212fea8db', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': 'fef2a1a1-9d2f-4beb-bda5-6b7835e48602', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'd6234dce-907d-4084-b68d-479e528bbafe', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '584186eb-6a97-46ba-834e-731a86f00693', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': 'bf57b7d7-f704-4c7d-987c-079a4d28e048', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '18655e1e-c8a9-4c59-8fd0-3aade41ee887', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '40eb7026-dcce-46fb-97a7-92f649a2120b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': '17d68874-2420-4145-966e-9ca82b5ae1e7', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '633e0d6b-50d4-4715-a138-00287860bb4b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '60f758c3-ae5f-4797-9214-2f028f684281', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '7c879e1a-df54-4ff8-a72c-d496a8ad2b7f', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '39e12711-1527-4f27-bfc9-f602fa506407', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '8c545e0d-0f04-421b-a137-1b3c34ec8596', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': 'dec4513a-9730-4f7f-a973-779f4e983d8a', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '003a7e15-669c-4979-b3ac-2563d7a5f460', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '05eb52d2-cd29-45c7-ac84-787d7f61ec7d', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'magellan-straits'}, {'uuid': '044d20c5-b255-49b4-ac98-e628c9119188', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'panama'}, {'uuid': '5e1e8e9c-d17b-4e58-9125-6e1fe96c921c', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '7cde8476-360c-436a-85fd-d2739c18a46b', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': 'f2140558-283a-4fe0-9e90-66bced8bb2a3', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '5c13e0c5-1f4a-481c-ba0e-666106987007', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '6b31308b-2067-425c-9716-39b03b75d04d', 'loadPort': {'uuid': '41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9', 'type': 'export', 'region': 'atlantic', 'name': 'Bonny LNG'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '1e4931f5-1570-4d80-a5fb-c3c3b2136de9', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '07e253b5-8e1b-4be9-82f9-b235c5b6956a', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '17dbf32a-9615-4221-83b8-de779e4b71c9', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '3b18592d-c3b6-4511-b41f-4f4a0d3729ae', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': 'ab1d6a8a-b1b5-4f7e-a7cf-dbebbfe4e40a', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '2f03c20c-e9b4-4e6e-9e5b-0855ee28b32a', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '8c34682f-af75-4d4f-b238-bdf25c53fdda', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '3c8d81da-18b2-4614-9a16-27e33e108047', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '332bd957-7841-406a-a318-3d0270d81207', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '9c40aeb2-115e-4707-9342-943adfcdf551', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '7e8f2f3d-a59e-463f-89a0-af7e73dc4d07', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': 'f0ff7a70-c3e1-4ace-af3f-b211799e90af', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '8562efc3-80ec-4d6c-898e-c9f5e0c4c0bc', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': 'bfdb206d-47f1-455a-b068-bf775c963b4a', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': 'daadbe95-88cb-4b7b-abb7-284304ae92ca', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '4ea8b893-bfd6-4cb6-a06b-63f2906c616b', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': 'a8422950-3aa2-42ca-9587-b1cf6ccd90f4', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '9ce48075-9d99-498f-939c-3328cb92d7c3', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': 'f9f8c885-7738-46a4-90d1-04c1ff228559', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '1d8852f9-4d4e-41c3-a9b0-a7074f9289e6', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': 'd12b17bd-d71b-47a2-8e8d-9c86021be739', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '7d1a64b0-d051-44e3-b5ff-d1d65ea30420', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'd84af4e2-6a28-4176-918c-5e3efa4e9e5b', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '1c8e0ac2-666c-4862-905a-fe5ce7a13fcc', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'c253628f-fcba-48b2-99f3-2dee9cdee473', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '2911dc74-dabe-4aa3-9234-d73fba5440d3', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '6beae578-b777-4bc2-96fd-322974a86079', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': 'cfc10a19-dbd2-4bf5-a36d-5e0a5f1c6019', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '9787bab4-8ae8-46eb-8c03-c2cbad15ac6e', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '2f534b89-db25-49a6-9dcf-d6f58a3cda05', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '6e6c518f-5264-4a49-b5e6-8a5c4bc782bd', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': 'a96af62c-d2ab-4cf8-9fb9-772f248379d9', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '39027f02-dabe-4863-844e-9c1bf85ca704', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '7936ad34-9e15-4bce-ac78-d0a544680e44', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': 'e9676331-766e-4b0e-8bf3-37c4eb4f0dd3', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '89f06dce-9302-40a6-85b9-b8a70e6fe784', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '53eb3643-ac1b-48ae-aa18-7ca5c0b128a7', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': 'c7d8bfda-0c31-49e9-8b54-95f482393830', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '6c0a7b1b-32e4-4f09-8410-48159d5ef0f4', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '1f07c3db-1c00-45e6-afc4-5a47cc25550e', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': '131d35f1-290a-4784-acf2-c5998c478f77', 'loadPort': {'uuid': '4fc2ec82-abe5-4f2f-89f0-7515c899b7ba', 'type': 'export', 'region': 'atlantic', 'name': 'Bethioua'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '9f59bf26-08e9-488b-a81a-bc8283b5369d', 'loadPort': {'uuid': '5038e832-50ab-4818-838c-310f3f101aaa', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '4af11b95-48c6-46fd-940b-8a5e856b6a1a', 'loadPort': {'uuid': '5038e832-50ab-4818-838c-310f3f101aaa', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': 'b4828875-07b5-410d-9a8c-32dc0994a1e8', 'loadPort': {'uuid': '5038e832-50ab-4818-838c-310f3f101aaa', 'type': 'export', 'region': 'pacific', 'name': 'Kamchatka'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': 'a6ee6dd3-ee0f-4950-b223-0ef44ee8e285', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '9f8f4406-972e-4788-80e8-98a2749f0909', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '6a6f3154-cc85-4d1a-9bcc-7007c8faac1e', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': 'fb7bbd42-5eae-41a1-9b51-df69815c5049', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '77ea12c1-af7e-4603-9c65-962757fe35af', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': 'a0768e29-7261-4f89-9f7a-2915b4e5db13', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': 'eadf367d-4392-4568-8916-d6446afd0acb', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '39f57994-81a1-468e-8881-1735d3c6cf72', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': 'e305fcdf-1391-4a87-89c2-5cb94ecc9d79', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': 'b55fcb67-005b-4749-9bd5-314a6c9540b7', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '25bbacf3-7908-4558-a3d9-27389b431621', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '5bedc4bd-14d7-4279-b3b9-4b2fae8aeb60', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': '03979a36-cc02-4ff9-9636-28c5b6d634db', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '23ef6120-d6b7-45e9-b40b-2a6db41e0e57', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '600c9368-39cd-4c0f-9826-0f12353fe795', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '518c6a77-ed5f-430c-8155-75e37a8cde26', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '451ea120-0025-456e-a3fa-d3ea145baa4e', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': 'b55ac25c-2aa5-4367-9f5d-2dac6bfac192', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '7da749de-b6e1-4cb1-b9b2-4bf0d27c45e6', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '7f1a1c42-c30b-482a-ac52-5961dee51cc7', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '03c8c4ea-e183-49de-bf49-563257ad5a09', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '0cc72a8b-037b-4b4b-a389-4f5434f154fc', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '3c4bc10a-ca42-45f1-891b-91cc7b77e244', 'loadPort': {'uuid': '66f48084-5924-4675-93e4-c40554e6ea9a', 'type': 'export', 'region': 'atlantic', 'name': 'Bioko'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': 'e96d2564-475f-4a97-897b-0c83046c5299', 'loadPort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'dischargePort': {'uuid': 'cf215cf8-238d-4660-b12a-0f567e14e407', 'type': 'import', 'region': 'pacific', 'name': 'Rudong'}, 'via': 'suez'}, {'uuid': 'f9f1c2b7-cc10-4676-8ecf-c298f732408c', 'loadPort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': 'ff1f764f-7081-4536-b403-1341ea955a3d', 'loadPort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '1bcc0286-7767-450a-b396-715077065514', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': 'eec169b6-7d1d-4d58-a8df-1f5895e09a74', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': 'f5a245be-6dbc-40a1-b40c-f0bd0c88a2fb', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': 'd2355d03-4fd7-45be-b4bf-8ad206d191bf', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': 'c7091620-73ab-4459-81e8-35d3ea3952dd', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '44c5a7a0-15e9-4785-ac1a-9649f8180f1a', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '9d0d4058-c387-48dd-8f8c-d6092ef24179', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '4fd948e2-b9a5-46b9-9084-a631cbcb5c47', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '735189a0-da31-4ff8-bc6a-1711dbde9311', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': 'cfedee6f-e905-476c-a5a9-25a2bf726a49', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': 'f26ef197-f690-4a95-bbe0-4d4df77da8a8', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'suez'}, {'uuid': 'c2b99dce-beab-44c4-9ae3-0f1fc3405bd5', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': 'f38b3810-c948-4f62-8f4d-f6f05b4f3d6e', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '2130249e-d9b9-4ec6-ab2f-6eb309a35aea', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': 'd2288f11-b939-43a7-95db-275f62e15e0a', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '7ac96f99-8f56-45df-bc87-f03e27a16512', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '0a025b9e-95ef-4e87-841a-d672cafa7136', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '36d1d95b-9fe8-4822-8597-676a5e7cedf0', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': 'cba6bc66-7e68-44db-83d1-ed33b4c0caf0', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '9d3d1076-5974-418e-a0d9-fe5878a2c62c', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'ba95e198-8386-477f-bbf8-023460511ad8', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '5d2390bc-2f96-4790-9a91-116d83f4fbca', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': 'd1f5a3cd-4043-4ac0-8213-5a03561796cd', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': 'ce56a588-beef-4343-ab55-daa4ff9b3bff', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'abd537f2-5519-4843-8d8b-df587bdef88f', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '554f13e8-4c7b-4153-a4b6-0b0c06c1efd1', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '17059617-3ac0-42cc-ad14-20ab56424124', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '11fa55e7-ebed-4aec-990e-c5abaac31c4f', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': 'aefb089e-c4b7-4764-bf6f-67ce40e2509e', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '6e543aa2-fe3d-4645-80cf-b67d305dff89', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': 'b71db6a9-d9c1-4d7b-9893-fb41d20da8ad', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '5cefee48-1b9a-49e6-88a2-a7dea0c46e10', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': '8ef056d0-4722-4571-b9be-016c7e85697f', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '88adcf6d-f1af-4bdf-aadb-33aa8bc62a77', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': '46e1c7d9-6c22-49d7-902f-7b3fd21fd317', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'cogh'}, {'uuid': 'e1ff4180-055b-42d4-8bdc-16ca843a8d16', 'loadPort': {'uuid': '761ba3e4-24d6-4cc3-aee7-2eae161fe029', 'type': 'export', 'region': 'pacific', 'name': 'Qalhat'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'suez'}, {'uuid': '13f0a936-c556-493b-b358-d8239e3e321b', 'loadPort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': 'c6ce811f-a764-4646-96a7-2fc2a6ba9199', 'loadPort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '919c434f-cb13-4888-b362-214c12e921fa', 'loadPort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '95e573e8-9668-436a-860c-500555662d65', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': 'b04949e2-3620-4318-9fb9-05e26d950810', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '64142062-6822-4332-b6af-faef9c3df6a0', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'dff250c4-48e3-4944-b618-ddf6ab0ae92f', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '562f6c77-3d5b-43fd-b6a5-bdbe9c9d3e04', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'b6aaa20d-cf42-412b-ac8f-1390b38e8350', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': 'e6d09f66-f640-47c9-8350-c3cb2b31e703', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '6c757728-d4a0-4aae-b0b1-383a5ee9f440', 'loadPort': {'uuid': '7ace6b2d-210c-4872-81ee-4791863d2577', 'type': 'export', 'region': 'atlantic', 'name': 'Calcasieu Pass'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': 'efc67e99-c6b0-4d83-9df5-e2f02c4aa1de', 'loadPort': {'uuid': '7b432440-6dc5-4346-b788-93b8d733511c', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': '49d86913-cd1f-4830-8232-ac56c1369200', 'type': 'import', 'region': 'pacific', 'name': 'Nusantara'}, 'via': None}, {'uuid': '20d26c33-4e0e-41ff-878c-e1c8e290008c', 'loadPort': {'uuid': '7b432440-6dc5-4346-b788-93b8d733511c', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': '937bcc44-2319-4638-a7ed-1db4bc591d0d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': None}, {'uuid': '9e309032-181d-44d8-a145-89f2a479fb91', 'loadPort': {'uuid': '7b432440-6dc5-4346-b788-93b8d733511c', 'type': 'export', 'region': 'pacific', 'name': 'DSLNG'}, 'dischargePort': {'uuid': 'fdd40630-f7ee-46ce-9f59-2c23a5f8b639', 'type': 'import', 'region': 'pacific', 'name': 'Lampung'}, 'via': None}, {'uuid': 'e8e218dc-4438-41a2-8e5c-cd8245920218', 'loadPort': {'uuid': 'a7552e56-f412-4e09-9a00-24884dfd9db4', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'b4a6d073-a43e-49af-87c5-ccfd7a18487f', 'loadPort': {'uuid': 'a7552e56-f412-4e09-9a00-24884dfd9db4', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '4dc53a2b-5fd9-4b8c-b086-11db2abd5129', 'loadPort': {'uuid': 'a7552e56-f412-4e09-9a00-24884dfd9db4', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '551667d8-796e-48fb-aa02-0bed6eba0fb4', 'loadPort': {'uuid': 'a7552e56-f412-4e09-9a00-24884dfd9db4', 'type': 'export', 'region': 'atlantic', 'name': 'Lake Charles'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '2fd30828-58d8-459d-8b27-f03e4a829582', 'loadPort': {'uuid': 'b111c30c-e10e-49b5-b490-15921e540e5c', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '6e7d6a4f-53cd-419a-b7bb-e40f8c8bd27c', 'loadPort': {'uuid': 'b111c30c-e10e-49b5-b490-15921e540e5c', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': 'c92d7ae3-32f8-4062-80f3-ce4a230f73eb', 'loadPort': {'uuid': 'b111c30c-e10e-49b5-b490-15921e540e5c', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '450901b5-7686-42c7-8fa3-233dec3b9d07', 'loadPort': {'uuid': 'b111c30c-e10e-49b5-b490-15921e540e5c', 'type': 'export', 'region': 'atlantic', 'name': 'Murmansk'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '0ac06f0c-8440-472f-b86c-92c056f32d02', 'loadPort': {'uuid': 'b454cadf-2cdd-4f0f-9058-b87a4db29b46', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '9c3a89ab-2f1f-4d57-a2d4-715bf641ccc4', 'loadPort': {'uuid': 'b454cadf-2cdd-4f0f-9058-b87a4db29b46', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '096e049f-9a04-4945-930e-208ca77a6f6c', 'loadPort': {'uuid': 'b454cadf-2cdd-4f0f-9058-b87a4db29b46', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '722b1abf-6271-4c47-a5ba-44b6174ae19f', 'loadPort': {'uuid': 'b454cadf-2cdd-4f0f-9058-b87a4db29b46', 'type': 'export', 'region': 'atlantic', 'name': 'Freeport'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '7f2722f8-01ec-461c-a864-f897c56d41ac', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': 'b9ba6477-2094-4a58-8b57-c61a187b59b7', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': 'dd05ba0d-e447-4a7b-8211-8cbfc6a82be6', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '075762c9-9440-49e1-a537-337a3b97dfdc', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '5d66ab4d-3bd0-4807-bff3-e8537576134e', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': 'e39edca5-7f02-49a4-8b09-bbe3e60b73e5', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '4480c374-47b9-4298-aabd-cbd81e8822c8', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '1b1093b2-94b9-434d-8004-0748ae90e880', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'magellan-straits'}, {'uuid': 'd080da7b-dd2d-4831-8c39-a47d0b6aa812', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '4fa990f2-1b5b-4169-8b8d-92b931a9d3a5', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'panama'}, {'uuid': 'e14e70f5-d9fe-4f22-a3e2-b6f769f0734c', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '500844fb-0923-44ff-9b72-88e050cb78e7', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'panama'}, {'uuid': '228fec00-9733-4d96-ad54-ce53b4edda81', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '202115bd-df72-4a11-8616-428c642786b9', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '526c8e18-3917-4861-bd9f-1146ed3981ca', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': 'b66257a0-cf58-4aea-937c-f6152b71ef26', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '8feab228-ddd2-4596-be4c-deff66c4a0c2', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '4a891c5d-2a8a-4cd6-8711-d5eac996beee', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '356c4759-12d0-45ca-bb7a-6e3e8e99d539', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': 'd5297784-9295-41b5-b5f0-5afc337ffcde', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '9dba684a-0051-4f1b-8900-59cf0bbeed0e', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'ca5eae7d-3740-4651-8f19-b2c5b078abfe', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': 'f58b2b81-4b31-4e88-9645-512293f9b188', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': 'a647b991-1d9a-4fb5-a24b-d3385dd62438', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': 'b7d7d901-6750-4753-8785-d60a937dc7e4', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'panama'}, {'uuid': '4a1b9cfb-1227-4f9d-96da-68ea3c38d952', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': 'c1fc897b-6e8e-4231-89c6-b4f39331ea86', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '0316d843-757d-423d-bbc3-e084c8af9c31', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '1d025955-23a2-45f8-a4da-686389a3ae5d', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '4b975e03-b49c-4842-b374-9a63b59b6eec', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'panama'}, {'uuid': '636c195f-9395-42a7-b6e3-a9b963716be3', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': 'bbb8968f-ddaa-40a0-822c-a1595f15f855', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '79e27932-1ef3-406d-8f73-e3d9b90d97e0', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': 'c706a9f2-b70e-4851-8554-5bf74314616f', 'loadPort': {'uuid': 'b45d6f9a-c64d-4019-9b9c-a27e809e10ce', 'type': 'export', 'region': 'pacific', 'name': 'GLNG'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '9805cda4-dc2d-41c7-af69-d406523406b1', 'loadPort': {'uuid': 'b4fe720d-841c-4037-8794-eef84624db1d', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'e61c6af5-c582-48b5-ba5a-9304bca478e6', 'loadPort': {'uuid': 'b4fe720d-841c-4037-8794-eef84624db1d', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'e719e450-83d4-4129-9e0a-02417f6a9025', 'loadPort': {'uuid': 'b4fe720d-841c-4037-8794-eef84624db1d', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': 'e8cd3219-500f-4dc1-a379-f38400f54c78', 'loadPort': {'uuid': 'b4fe720d-841c-4037-8794-eef84624db1d', 'type': 'export', 'region': 'atlantic', 'name': 'Plaquemines'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'cca26201-8cc2-448b-ad80-7116b9338c57', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'panama'}, {'uuid': '062efa6a-0717-4e06-a3d5-df1af32aaaa1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '5701ec48-48b0-47b8-bdea-fc6889a87098', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '60720cee-58e5-412e-9c9b-226e60d2dbcb', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '0e815601-59c1-40c4-ae23-201a4746a8bb', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': 'd08e3403-aa07-4bdf-b341-459d3733c792', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': '81cd6cb6-9c36-427e-86df-69a85d8a658b', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': '29a64f3d-63cd-4d57-b551-4cbb51c4dac8', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '6ff66ee2-08d1-4633-8681-b81a0bdcd8af', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '1669c6fe-982f-485e-acb9-7598ff1d63c1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': 'a978f314-c38f-42ca-9930-15c7e6276ee6', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': 'aaee6932-6cb5-4a2f-ba78-97234f622d81', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': 'df982b5e-df2e-4a2c-9d8d-bf28c6d9e1a1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '71b46704-6829-4730-a2e0-9d0c8568da97', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': '549d9493-3cc6-4cc3-93d1-955a8537cc9a', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '41239bf0-da2d-4b00-8b22-48945996b9a9', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '31596335-9f75-4af7-91ba-5db13eb7e966', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '63485b1d-74e5-4012-97d7-487b9450673e', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '4489c567-7399-4901-b66d-1300c27f4ee4', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': 'b384412c-8fb5-4107-bce4-98a8ee26c7a5', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': '9dfea054-0d52-4b0e-a27a-d1f74bcad75a', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': '30969ecf-d80e-4082-824a-d0aac64a6e6a', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '2224ae58-22aa-45f0-baea-31fe0981315b', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '526c8e18-3917-4861-bd9f-1146ed3981ca', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': '054396be-a2b3-4f6f-84cb-07f2df695eae', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': 'f161bfb2-ff2e-4523-8bb2-a46d2978df15', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '9c2de78b-12ac-46ed-9506-9dbce573bc43', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': 'aa105e91-b12d-46c8-ae83-1f2bfda7d80f', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '66749286-9664-4b29-97bd-7c26348ef2dd', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': 'b1a8633e-bfff-4ed7-8479-2e02496165d1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '4d253a39-7295-4870-881d-e0f8ea13ee92', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'b8881d08-fa19-43ac-aa58-f10d37bf32ff', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '874dfebb-a778-4fee-a821-4202173a5cc0', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '2e2fec47-6314-456e-9635-17c4331e67cb', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '44ab4d76-5842-47c5-9338-e67d6b2af2f4', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'af21a848-9b2f-4223-9ae7-47c9327e6d89', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '8c08e88f-a0b0-405e-9e9e-439d2343210e', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': 'cbfdabb2-8524-410f-8950-0d54af6c6698', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '6021c740-0c88-461c-88ad-95c0780f6ad1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': '6740c028-87f8-49b6-977a-dab26c0e0893', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '54dfd45b-8a45-4ae8-9dd5-21e53468dc78', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '02e21805-adc7-4445-9d31-61aa45f11a1f', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '32095c13-104e-4295-86b1-7c09d86f1247', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': 'e6f7f8ad-e591-430a-ad04-06b77f48b15f', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '133f6d1f-80cb-4ab9-80c4-ecb561e1b9a4', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': 'ce2250ca-cc9a-4cc5-98d3-03e2509c9abe', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': 'f5e4974d-f69e-45cc-bbd2-878b0482f7f1', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '4b4f1479-fd96-4190-b938-18ff814c4435', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': 'd9e8a26a-0b70-46c5-94fa-91f79d74367f', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': 'd169f2b9-db57-453a-ae37-88cf8d68e50e', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '90df6818-fdf3-413a-a5f8-6cd700c85dba', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': 'fbf00b85-b124-4193-a338-43528750bdbf', 'loadPort': {'uuid': 'b67042fb-6458-47df-bcda-1bb29acb5c10', 'type': 'export', 'region': 'pacific', 'name': 'Bintulu'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': 'f2616fbd-0e2b-4311-93d3-4220c0f8a45d', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '4c887c19-5125-49bc-ad86-812bca019465', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': 'da358e69-1284-44be-8087-bab296f0acc6', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': '869728c6-4403-4001-bb09-e882a509edb3', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': '627fad57-99c0-4828-8c2e-e5dc1dc9d400', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': '526c8e18-3917-4861-bd9f-1146ed3981ca', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': 'c0b0ed41-4fc5-4577-8bd2-c090875d60b3', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '06c72823-9328-441d-a003-d67394dacddf', 'loadPort': {'uuid': 'ba1be493-573f-4d6e-8d10-b52ac2228ce7', 'type': 'export', 'region': 'pacific', 'name': 'Coral South FLNG'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '2dc2f7a4-de8b-43e5-b519-278fbd89bece', 'loadPort': {'uuid': 'badb3356-4055-47ef-8157-a476d88b9c25', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'bfe311a3-6137-453a-bf2d-f94f9b06ca61', 'loadPort': {'uuid': 'badb3356-4055-47ef-8157-a476d88b9c25', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '7565c9ee-67ae-4a6b-90ab-8b8c611a74b9', 'loadPort': {'uuid': 'badb3356-4055-47ef-8157-a476d88b9c25', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '0f30660e-8757-44ef-aaa9-14caa75d7109', 'loadPort': {'uuid': 'badb3356-4055-47ef-8157-a476d88b9c25', 'type': 'export', 'region': 'atlantic', 'name': 'Rio Grande LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '718d7c8d-a397-4706-a472-8b1739667610', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': 'f5809c3a-7c66-48a1-97d8-7be5a7f40b7d', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '5f3e5dda-7bb4-44a8-9ac6-6078a8056ec4', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '61a40ecc-3eee-498a-8ec3-7433647d556b', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '230ebc56-4ee2-4ef2-8d25-3f08daf6ca6b', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '13d5f1ad-13ab-42e4-b5dd-47271952b001', 'type': 'import', 'region': 'atlantic', 'name': 'Sergipe'}, 'via': None}, {'uuid': 'fd11c339-50eb-4f01-902e-4c933bf0bb27', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '2596c195-30c4-4b22-933f-51e8abf0bc6c', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '754c350b-1ad4-436b-bd46-30224b456b72', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '6ae5035f-1554-4218-9b2f-a06a5cbbbf02', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'cogh'}, {'uuid': 'd62638bf-bbf1-408d-8ffb-18ddd2d9e00d', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'suez'}, {'uuid': '753ffdf2-3f8b-490c-a49c-088f4107dc23', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': 'cc08fb99-218f-4550-92fb-013705d5578a', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': 'f4961b60-69b9-4082-abc1-2de7492a1b37', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '88b696bb-9a1f-4e9d-91df-0681eb3e60b7', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'panama'}, {'uuid': '495cbf3a-5720-4ee5-808a-6b6d88916c2c', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '000c3990-12f3-4c58-b356-f8c26ef6ae7d', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': 'd97e1286-a670-4dff-abb2-5523cb83b25a', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': 'e46b1be4-36ab-41e4-93c3-260ab3d86463', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': '6b38a37d-d9de-46d8-9b8d-daa39f28b686', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': 'ff5f2254-8a9d-4b7c-adb1-3066b67faa43', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '48e81ac3-10b2-4350-8e1c-5d6b9b192a01', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '7af8987f-8124-4f37-8077-23c0937622b5', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': None}, {'uuid': '292a2fa2-f9ea-4a75-ab34-e2744c0fb88a', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': 'ef749b81-4228-4f91-b817-e21ea316e1a0', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '3fe447c1-bb4c-40d7-82a6-ad381c76a3be', 'type': 'import', 'region': 'atlantic', 'name': 'Pecem'}, 'via': None}, {'uuid': 'a28b7768-1c7a-48b7-8264-74239b30a471', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '68fb6b91-ad2a-4f36-b907-3228d7cbf83f', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'cogh'}, {'uuid': 'e947fcfc-d8ff-4689-9b49-1ec38071ad61', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'panama'}, {'uuid': '9af1dd9a-81e8-46eb-b25d-56139cd7e0a2', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': 'suez'}, {'uuid': 'dae12296-dff1-43f3-9826-9a66e8235e92', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': 'bdff4566-caff-447a-9460-553c23911777', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': 'cogh'}, {'uuid': '0c4ec997-862e-4d56-8c62-9e21fa46ee95', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': 'suez'}, {'uuid': '2349e114-52a1-49b0-870e-e419e3e15526', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': 'a45a90b8-eca8-4ab5-a2c1-56474c7a0a52', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '22b1ba81-6e9d-42fa-a93c-96893c7d6c6d', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '6f9a3c77-f3e1-422f-96c7-8f00a5a6f902', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '1946c2bc-6b31-4332-be2a-d320c49a434c', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'panama'}, {'uuid': '7200935d-6784-4069-b944-2847e94da47e', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': 'a232c8ba-d112-4c99-bcc2-400438548de9', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '12add501-6289-41fa-b02d-86b40e96da43', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': 'a20a22c3-22c9-4a10-b168-624c7e434648', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'panama'}, {'uuid': '58089359-7951-4c14-b28d-5e5977634e7c', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': '16343fb9-e5db-4ab8-90b5-1aaa16e11208', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': 'b5aca35e-b90f-4690-a99c-a60fffb026cf', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': 'e77174a1-777e-4ebe-b1cd-c16e0e0aaf13', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '645f1a6d-dd5d-432c-8fac-2903c412ca4c', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'e1fed84e-6f08-483f-8766-1163aaeee3c3', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': 'b0613438-368d-45f0-a748-d9385cf3ab72', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '7818b562-bfa9-4876-91ea-521ce2d9dde2', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': 'c718f98c-782a-457c-9632-ec1b49b6f45f', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '610a9bb2-955b-4c4e-b07f-efc3931f6fc8', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '937bcc44-2319-4638-a7ed-1db4bc591d0d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': 'cogh'}, {'uuid': '05aefe33-2924-453e-b955-b5c58ea514bc', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '937bcc44-2319-4638-a7ed-1db4bc591d0d', 'type': 'import', 'region': 'pacific', 'name': 'Arun'}, 'via': 'suez'}, {'uuid': '720ffd4a-8507-4918-aae4-934b0c0c7b04', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': '0e2aea9f-8554-42f5-949f-e3fb7244e14b', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '062470aa-e4da-4d23-baa6-3a50cd1b2f78', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '08301f7f-fb1c-4430-9387-585340955765', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': 'cc2a68a1-c990-44f7-a7c9-ae0eaa9584c9', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '7a2bc03e-371f-4d48-a91a-4268685ae054', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': 'c145bfec-bff0-44ff-b201-5c0855a227cb', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '82ef8263-e208-4080-ae1d-4efc370fbaab', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '44e1c4b0-e79e-4ca6-8c1a-a0dd13acf7c0', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '7003cc0a-5aa2-464b-ade9-5495ad1a6ad3', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '81b142a7-7eb3-4508-b9bc-d9fc5923c2cb', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '51932a2e-a644-4980-bdee-c3861352b409', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '865d09d6-f3c7-4467-a9cc-838ae46f8a20', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'panama'}, {'uuid': '41689e93-ca23-473f-a1a0-a04ae168d1e8', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': '2632256f-1a8a-44c4-aa9e-e379f080b9b4', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '3bc21789-7aee-43c4-94dc-de76bbd3e356', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '8db78d09-775b-49b9-ba26-a4ebc3eabd1b', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '13c8d2a5-dedc-488f-a703-d4be9ee70998', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '8961c5ed-cf23-48b4-9991-2a373bc893b6', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'e1d528a4-2c2e-43c8-8f85-cd705ffe0b28', 'type': 'import', 'region': 'atlantic', 'name': 'Port Açu'}, 'via': None}, {'uuid': '1dd964c9-5057-46a7-846b-703ca7c0a035', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '2d094b23-6120-4dcc-9125-13346c051c70', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': 'bd8bdbdd-b24d-4125-bdf6-d43d6ca12a1f', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'suez'}, {'uuid': '5c19e4c3-f236-4699-825c-f7edda5d3ffb', 'loadPort': {'uuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a', 'type': 'export', 'region': 'atlantic', 'name': 'Sabine Pass'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '00b59a63-518c-4dcf-9b99-370693182041', 'loadPort': {'uuid': 'c65b2db0-6a5c-46cf-ac15-fe05db5030d0', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'cogh'}, {'uuid': '6456394e-8903-4880-8b60-254a17f9a221', 'loadPort': {'uuid': 'c65b2db0-6a5c-46cf-ac15-fe05db5030d0', 'type': 'export', 'region': 'atlantic', 'name': 'Cameron (Liqu.)'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': 'suez'}, {'uuid': '67f5243b-400e-45e2-b437-d9bfbe8be198', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '65b6fe6b-ac05-4424-a309-2bb57bb2902c', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '8e511a23-4b1e-4992-ac76-c0bb110efbcb', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': 'b9d8e564-ecaa-4a0f-bc19-9827047175e2', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': None}, {'uuid': '574f43d0-8bd0-4d10-b4de-8ab116e9d8a9', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '9b88f9f3-9bf9-4f00-9f4f-8913acd20d63', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '52de60c9-d205-4338-8efc-81dd57a1376d', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'cogh'}, {'uuid': '5a59c333-324d-411a-ae5d-f61321b01ac8', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': 'suez'}, {'uuid': '344b6687-0a9a-4d2d-a455-18712be75c75', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': '948f9d26-a276-49fc-a1dd-d7b3dfd6df35', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '9b72ad9e-ac2b-4b16-80cc-5f1b4158fdd2', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': None}, {'uuid': 'd59a3a58-fab6-4c10-bf60-adf2db14c650', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '76b4aa2b-9dcc-4967-b6b9-f3fcb51777f1', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': 'f647d444-b777-40d6-8e8f-af44209ba9fc', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': 'e39477f9-161d-4f48-a1b2-77295f03ed1e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '52abee5c-cec0-4fbd-aa21-64bd6ba3271c', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '97019bc2-2a59-4757-bb29-3ecb69bfe21d', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': 'a8a3bcaa-2d2c-4aa3-ac41-21e7ddb13f9e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '07ef7d0c-c201-438a-b08d-f6078af47d78', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '787edba2-bfa0-4405-983b-068b5e798d3e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': 'fc5eb617-9040-4747-862c-6b5f910184f1', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': 'bbc74bb0-62ca-47fb-aafc-e8766894b92a', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': 'afc63d00-bc74-43d5-aef4-cb8d942190c9', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '19a875f3-8643-436c-8d89-4cc07cb9e919', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'cogh'}, {'uuid': '3b1860b1-c85e-4bbb-9e96-8e3344d1349e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': 'suez'}, {'uuid': 'c39e4747-7d47-4fd4-b8f0-56fb6745ccc0', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': 'd95a4fee-1af5-4246-85af-04e388ae0cf4', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '36bc2279-ed07-4872-a832-f0793ba7acbc', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '9d3854dd-059c-4898-b0bf-a6b921db3a4c', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '740b649f-fe11-430a-b12d-92142433cf97', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '41693647-ffd0-45fd-977d-ea8a6427c80e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '3a0a15b6-cd8a-4b6c-af47-1ef5736b57dd', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '84ffa393-2363-4821-afa5-8bf27056b5f2', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'cogh'}, {'uuid': 'dbff7a51-7c0e-4dd2-8de7-1283d53133bd', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '3592880e-bb67-4d8c-b3c7-a27b14803dd4', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': 'a067090d-1e0f-4fe7-aade-1dec48b9659f', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'cogh'}, {'uuid': 'b1efba85-666a-4174-b59f-7792ebfc6cd9', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': 'suez'}, {'uuid': '356cce7b-46a6-4b6d-8e38-82b3d8cf0837', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': 'b18f351a-1142-4dfd-a82c-3a4160ea0d79', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '3f8b74db-6d0a-4fd2-aee0-d5a08d3d3312', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': '4082ec77-6f78-4d39-9057-18379858151d', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '946573e0-8cee-418a-aca8-e7405ed58cd6', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': 'cb2bb807-f2e9-4708-af01-d6df317d4732', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '8bb3c99d-3e4c-4902-90ce-8f98b1a4cdda', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': 'b43293ac-9012-4c18-a849-35909f5840d0', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': 'cb7961e6-a6c5-482d-bfe4-864315bfce81', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '54af70da-e15f-4e36-baec-8dde25bfaffc', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '810ebe20-3ecc-4a48-8b82-24714c40d49e', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': 'cb87f1e0-239a-4335-a5a0-833084ea8eba', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '16bfe4aa-5d64-414b-be26-aaaf60fd8ad4', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': 'fff6b550-081f-47ca-a898-6e925850d0e0', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'cogh'}, {'uuid': '8bc6f87d-c6ae-43cd-8b9a-a07ba8e9a9e4', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': 'suez'}, {'uuid': '939825c6-d325-4f50-8cbb-21d6dbb9cc15', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'cogh'}, {'uuid': '88d38311-6fac-4697-8dc1-a0679b3a4e3c', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': 'suez'}, {'uuid': 'd7c6ab1e-d04b-4520-badb-fdd5117a6c90', 'loadPort': {'uuid': 'c72a2f0c-675f-499f-a9fe-a085dd79c42d', 'type': 'export', 'region': 'atlantic', 'name': 'Hammerfest'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': '65757554-d1bd-42aa-915c-00def8f4bb89', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'cogh'}, {'uuid': 'f51223b3-4e1d-4022-8ff6-7d5739113a93', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': 'suez'}, {'uuid': '9672e3b5-71c4-455d-9f78-56db95906c78', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': 'cogh'}, {'uuid': '74bf3faf-7609-4d38-a3c4-8a4a849ba8cb', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': 'suez'}, {'uuid': 'dbe56a8b-a0a9-4d11-86dd-c2faf1f13408', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': '5b7fe2c8-3273-4685-b61e-841fac80f547', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '1b066416-6d23-463f-971a-eef813d0cb4f', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': '8344418b-e9eb-4a49-9c3e-69ed861fe10f', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': '7426da20-632f-443a-842e-07b0cf4c976e', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': 'd7c0ac2f-9c9f-4581-ae24-338ee7ffdb82', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': 'b1685df4-2aa2-4d87-84d1-02294429466b', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': 'b6085155-137b-45ba-a50e-1936edd75d6e', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': 'c6377310-197d-44cc-92cd-e46165138c9c', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': 'f46208e2-fc54-4b9e-841a-fd4c9eea4d5e', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': 'cogh'}, {'uuid': '195cadbd-d163-4896-8abb-b8ffef734247', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': 'suez'}, {'uuid': '49a47292-be38-4a96-b94e-bfd4cd4505c3', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': 'ce44619d-5c21-44d2-9a3f-6e4ac30cd2de', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': 'e27abaa1-0de8-4d50-a4db-24c74218198a', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'suez'}, {'uuid': '08eff809-e6c1-47f1-8e99-8ffa5466a1b5', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': None}, {'uuid': 'd5741208-ed54-4eaf-8408-2e011416dfc7', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': 'c053038b-6e5b-4b9e-a425-d4a450274b13', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '9438c7d8-a281-4649-9a04-32b5afb620d9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': 'f506f2c8-a1d7-4b92-b489-8cb0c1d2e7ec', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'suez'}, {'uuid': '1495d733-ac6e-4118-8ec0-42ae369b30bc', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': '38a15e23-0ec2-4a4f-b130-40c1695ab0e1', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': 'de037b80-fff8-47cd-b21c-f495fda7e254', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': 'f0a20ba6-67ee-4d6f-9179-e1cfe04917bb', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': 'cogh'}, {'uuid': '5a3f25a5-abe8-4f9c-9a62-c9e71f10556d', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': 'suez'}, {'uuid': '02ef7593-b8d3-48ad-bc34-3f5d0c7a4b62', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': 'f03f0784-1280-4062-b78a-12fa8e8921fa', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '8f094693-6d58-4d7e-b78b-2bacd41dd5bc', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '5f628fae-3187-498f-944a-ba4b3589c14d', 'type': 'import', 'region': 'pacific', 'name': 'Zhoushan'}, 'via': None}, {'uuid': '0cde73e7-fcb0-4846-8f40-904eda4306fa', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': 'cogh'}, {'uuid': 'fa238ef6-f6df-4b1c-94ef-9f43a0373ce2', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': 'suez'}, {'uuid': '56608ffa-f60b-486e-802f-8cb7f0d03abf', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': 'f5b11ffc-61a3-4745-ada9-7fd45d91deb1', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': 'cogh'}, {'uuid': 'f3ef5b16-c69f-4534-a34d-b62216ca7584', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': 'suez'}, {'uuid': '3e1b8220-e5db-47b6-9176-8258daec9ae9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '21a50099-8654-472b-a235-bd9904c738a4', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '113d758b-6106-4e0b-b1f4-fce6548243e9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'cogh'}, {'uuid': 'd2237eac-24c7-4302-83c4-d00fd1f80dd0', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': 'suez'}, {'uuid': 'e12f4568-91e3-4b85-9ddd-d4584ba9a396', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': 'd405124b-6260-4453-9281-e2b40155c000', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': 'cogh'}, {'uuid': 'e4cef753-e80e-4b39-b487-b87194b08327', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': 'suez'}, {'uuid': '80f31fd6-b6f9-46f2-8b77-23be3cd3107b', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': 'ddd68d78-203d-4a6b-8e15-82de355b4466', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': 'cogh'}, {'uuid': 'a23173de-2826-4afe-a8c2-d8570df297f9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': 'suez'}, {'uuid': '34b4adc3-fb37-4123-be1a-6980154ae6ba', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': 'cogh'}, {'uuid': 'e440195c-4336-41d3-9b81-dd491012fd7c', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': 'suez'}, {'uuid': '250fee92-dfb4-4b8b-8897-596ac5d04dbd', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'd28aea99-cbc6-4b45-86f4-fc1bdd9eafe9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '9685f298-5f74-4ac6-8478-72234e48d5b4', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': 'bab898c4-d0f1-4077-86d4-62499077ea69', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '8a8ed734-db53-4ca9-b532-4356203a56b0', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'f5bd985f-3ae6-48e3-acce-78d0fe4e901a', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '52b89f82-c031-4bd0-bec9-7e56d4a44d10', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'cogh'}, {'uuid': '32214185-30b7-406d-aba4-8e3cfd12911c', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'suez'}, {'uuid': '4c61dc1b-3bb2-4cb8-a3db-138943d7a83b', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': '86f7ca70-0be1-4570-be87-c4583c6b0b9a', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': '43c94c86-b341-4b0e-aec5-c4b00826a844', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': 'aeb75e03-a2dc-42f4-8c3e-7f81872000a4', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '66622615-ff71-45dd-ab47-4d699787bf3c', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '402486c9-790f-4232-be3c-f855618603e1', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': 'cogh'}, {'uuid': 'ba40ffa0-5889-4421-8503-9c4feb69d50d', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': 'suez'}, {'uuid': 'b48f0fdf-212f-4694-bee8-ba745974ed39', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': 'cogh'}, {'uuid': 'ed91a8b1-4054-41a6-8b64-30d98cc04a7f', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': 'suez'}, {'uuid': '6dc12217-2387-4f4d-b4ce-444aea69931a', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '14ee5fe1-7f71-4980-9ed2-b08f2c7a2379', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': 'a6d231e9-84cb-4e90-8edc-a26e580eaae9', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '360ccca6-81fa-40c8-afca-f37281a08ef8', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '5bd0dc29-b386-4ab1-9948-1ef4c0dde8be', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': 'cogh'}, {'uuid': '7839afc1-1473-4d8b-b64f-ebace4c071ea', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': 'be8cd978-99f1-4216-aa58-45cdc43ddcee', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': 'ca46998e-955a-4de7-9a76-f105fc8769e0', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': '3b342512-2660-4da2-8c7a-b593e1f27cd2', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'd95c7a7f-9923-4041-9892-6e48dd4670e7', 'type': 'import', 'region': 'pacific', 'name': 'Shenzhen'}, 'via': None}, {'uuid': '3e13d0a3-97d9-4d29-8fe0-e634fc387b34', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '413d1b06-fe4d-468a-9e6f-52880769e021', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': 'fcacdfaf-4e83-4d86-8eb6-0ba02b24b9a8', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'cogh'}, {'uuid': '493e6812-7125-459d-b3b7-59846c3c123c', 'loadPort': {'uuid': 'cf0f20bc-d585-4328-b6ea-03c2250e1eaf', 'type': 'export', 'region': 'pacific', 'name': 'Ras Laffan'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': 'suez'}, {'uuid': '498e5433-e539-45a5-9771-542486f46e76', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '2f646318-7e01-4b62-ae88-cc796b18d144', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': 'b8155d07-e7d4-493b-bf29-0a97ff0412de', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '63840921-1a6d-4db5-b366-0285490ea055', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '7822b3f9-44c2-4af7-831a-401abc608b9a', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': '34681573-12d8-4025-9dd3-8a7d3a1c8d72', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '6b64c5e5-cc1f-4a47-8198-1a3befc536e4', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'e7a5993c-7ca2-4c77-a815-b1285c808353', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': 'cb0a220b-8166-48c8-bd93-f3fe2784d56a', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '7e1db784-5239-4b55-9269-f728d562d2d1', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': 'e78fa4da-de37-4503-b68b-13ee2dac3f73', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': 'e5237d2d-645a-4e0a-994c-6ef63ed22a63', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': 'b83ac1f0-4a1e-4280-b745-fd587b2d5781', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '278d49d7-249e-4eeb-8377-f53532d11c8a', 'loadPort': {'uuid': 'd01cce53-b4c9-44d4-b5b1-a68332d2db46', 'type': 'export', 'region': 'atlantic', 'name': 'Corpus Christi'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': 'f1d335c6-035f-4672-b72f-deb72bda248d', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': '8732f137-a70e-4205-bfac-3a530226447c', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '2d69c878-5733-4671-9c93-aea2e1cfb5c7', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '53999a2f-d827-4213-9adc-308ba301e7d3', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '866d4706-d650-4744-8fb3-307c7afb5b8a', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '5eb2da1b-da97-40e3-a5cd-a19c5721bfe3', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': 'cc912a3a-85b8-42fa-aa38-01113e40731c', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '47af3579-5cd0-4d07-b7c3-34a7d6a4e616', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '17653c93-b93a-4245-b403-c66d9f94e9be', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'panama'}, {'uuid': '26ff4e7f-8679-4507-8f9a-c8aa9e95b396', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': 'ce3d7270-9552-4340-9d50-d2afb05a116d', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '1c785ade-41b4-49a9-b769-14089e1f11da', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': '21e4d7f9-455d-45c1-a30c-bc56ff7e8f6d', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '9989edb2-0dd3-4cf9-a06a-0f947e01b175', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '71a563aa-298e-4cac-8610-1fe4c59e4cbc', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '7cb19a5f-6134-49e0-bac4-703a192400ef', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': 'a1a9ee78-3aed-4668-b1cd-eb71ee70c53e', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '8e5f8e4e-2aea-4488-8408-2f4d3dfaa307', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': 'ebd98c94-07fb-4974-ac1a-23a5fe64b061', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': 'd37f800e-4b7b-4758-8b8f-cde3f2ce969f', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '77c70597-f5f5-4700-a49f-34dc9897f6a6', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': 'bee380ba-1e75-44e4-bdd2-cefc94271809', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': '9cd25f78-e118-442c-951f-f0b2dbacdfe5', 'loadPort': {'uuid': 'd26d37b3-440e-474a-b39d-644d4941282f', 'type': 'export', 'region': 'atlantic', 'name': 'Atlantic LNG'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': 'ab50fc11-32f5-4200-9ed4-ff2ea16254e0', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '02ff7358-2102-4d04-8f37-67f3e7e4eb53', 'type': 'import', 'region': 'atlantic', 'name': 'Cartagena (COL)'}, 'via': None}, {'uuid': 'eab9ef42-220e-42aa-8930-d1f5ae891b0d', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'cogh'}, {'uuid': 'aa25eb0e-b7fd-40fd-9719-304d5a036cfc', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': 'cdef640b-cfca-4ade-ada2-86a407a5dd28', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'cogh'}, {'uuid': 'a6dbd4ee-1dd2-4a45-a89f-0e1bce6bed37', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': 'suez'}, {'uuid': 'ded637ab-9ca1-4baa-a33d-a81aec66dbd9', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': None}, {'uuid': 'ed64a33b-65b4-495a-ac46-6f4028c79c4d', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'cogh'}, {'uuid': 'ce87107c-896d-4861-a63e-96252fbb62bd', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '17e54480-7b61-4194-a449-9bdf39b9c3fa', 'type': 'import', 'region': 'atlantic', 'name': 'Ereglisi'}, 'via': 'suez'}, {'uuid': '9cb96591-89e4-49b1-9f79-774ade1339a5', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '1cc71574-b457-4f52-9c11-5b26ec7b5548', 'type': 'import', 'region': 'pacific', 'name': 'Ennore LNG'}, 'via': None}, {'uuid': '46ab928f-f70a-45b2-8627-95ab401a2744', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'cogh'}, {'uuid': 'c565b28d-d4e3-4fec-9892-966495382af8', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': 'suez'}, {'uuid': 'ab16e944-ff78-424e-947c-220a597e386e', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '22788f9d-c518-4a7b-8a0c-fbc376ea3056', 'type': 'import', 'region': 'pacific', 'name': 'Pengerang'}, 'via': None}, {'uuid': '76f27886-5f41-4003-a571-c3bf7c003ac1', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '26401777-05ce-45a2-8808-484f4b72aa66', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia Blanca'}, 'via': 'cogh'}, {'uuid': 'e7041c22-29b6-47a4-86aa-4b0d77a6e8be', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'cogh'}, {'uuid': 'dd832da5-a6ea-4bb7-b9f6-4681ba5f0eaa', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': 'suez'}, {'uuid': '25a8aee7-a941-4442-b80d-134b66c1feec', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '2a27bddb-d7db-4c1c-8488-71350c251a25', 'type': 'import', 'region': 'atlantic', 'name': 'Bahia'}, 'via': 'cogh'}, {'uuid': '0c0d3909-2699-44fb-b34d-4768e17f4bba', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': 'c64f6d08-d358-4a71-8cce-dd255d12ada1', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'cogh'}, {'uuid': '670f7459-bf7b-4c73-8210-2191c09fcef1', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '2c00fc50-4dd2-4067-8240-5f7929e8a191', 'type': 'import', 'region': 'atlantic', 'name': 'La Spezia'}, 'via': 'suez'}, {'uuid': 'cf22a6e4-e76e-40ae-8b5d-e5fc8b717847', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'cogh'}, {'uuid': 'd190af56-725a-4bdd-93b0-cfb80ee744a5', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': 'suez'}, {'uuid': '24caebe9-40aa-4072-93ac-c5eb9b500be6', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '526c8e18-3917-4861-bd9f-1146ed3981ca', 'type': 'import', 'region': 'pacific', 'name': 'Batangas'}, 'via': None}, {'uuid': 'f953bb85-7dc8-4c16-bead-4550f6408647', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '6178abca-3462-417f-80e8-76ced2d771aa', 'type': 'import', 'region': 'pacific', 'name': 'Bahrain'}, 'via': None}, {'uuid': '92b4c75f-e3de-44e4-b5b8-cb94fed4f3c3', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'cogh'}, {'uuid': '51fcd85b-ef23-45ee-9ca2-dbc280d2ba80', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': 'suez'}, {'uuid': '4546abdc-0b46-4279-bd79-440d7bd5b66e', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': None}, {'uuid': '9c5b3726-3b3f-4d53-a7f8-2ec4ef8e352b', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '75569937-f268-4ffb-b0b4-f88be1c9e330', 'type': 'import', 'region': 'pacific', 'name': 'Singapore'}, 'via': None}, {'uuid': '7564eae2-dd98-464e-b1c7-6bcb73e8434d', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '72ca6389-b75e-4df7-82ed-241af7932ddd', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '767bb74f-71c5-47a2-9ac0-9562cc741eac', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '6452308e-98f2-4046-95ad-4d4fcb5d96c6', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'cogh'}, {'uuid': '9e655dc5-44a1-43b2-8868-93bed1fa4f43', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': 'suez'}, {'uuid': 'f7b544d6-f370-46db-85eb-5838daab9e23', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': '427b4bdc-bd35-4573-8081-8c459838a708', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': '9d06ae2c-44b8-44be-be78-043e066d99cf', 'type': 'import', 'region': 'pacific', 'name': 'Ain Sukhna 2'}, 'via': None}, {'uuid': 'a446e297-0977-4a0e-a25e-719cc4ccb6f3', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'cogh'}, {'uuid': 'c13591cd-25c1-4ebd-ae86-e55301d92bfd', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': 'suez'}, {'uuid': 'e9238e02-d7a4-44b7-ab71-2bfb0649552f', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'cogh'}, {'uuid': '00f0151f-215b-4086-b84b-4eb9a503f408', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': 'suez'}, {'uuid': '431ae42a-6eba-4a5a-856a-0207071bdb7d', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'cogh'}, {'uuid': '4cbf8159-e21e-42cb-ac4d-fed050a613f6', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': 'suez'}, {'uuid': 'e1e26c94-bee7-40df-b5bd-55fcfa9fa4d8', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': None}, {'uuid': '02985e84-d3d2-4d65-ba2a-0deb52723404', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '0dc05d50-b5c1-4dda-ac5a-4c3d13c25cb9', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'ccf768d6-7b75-4da6-bb99-d821ee00b8ca', 'type': 'import', 'region': 'pacific', 'name': 'Quintero'}, 'via': None}, {'uuid': '27ac4d5d-2cab-40fd-a670-f93114049c7b', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'cogh'}, {'uuid': '5ab01665-17de-45e7-a2c7-9f6c2467174a', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': 'suez'}, {'uuid': 'b9710904-ff30-4645-9074-e8c150456545', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': None}, {'uuid': 'ec027c7b-f3c5-46a0-a13f-2e5a39c7c5ab', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'e9bd594f-473c-4929-8502-ed8dbdb8108d', 'type': 'import', 'region': 'pacific', 'name': 'Chittagong'}, 'via': None}, {'uuid': '4309745a-902b-4cf0-bb8d-1a21df6b5813', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'f6587b94-d877-4429-b2d1-f477ea7a643d', 'type': 'import', 'region': 'pacific', 'name': 'Port Qasim FSRU'}, 'via': None}, {'uuid': 'f7ea4eb8-4c6f-4b58-970c-92572aff645b', 'loadPort': {'uuid': 'd3f0ee6d-d718-454c-b057-3b4b87830d41', 'type': 'export', 'region': 'pacific', 'name': 'NWS'}, 'dischargePort': {'uuid': 'fd66234c-f14e-44a6-b190-6aea1cfe6fa1', 'type': 'import', 'region': 'atlantic', 'name': 'Escobar'}, 'via': None}, {'uuid': 'e3af50f4-e890-43d1-ae20-5b1607a7c796', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '9359446e-208e-4617-80b5-01838211e2f9', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': '439a54cd-ee68-4832-a7f8-4f0fec500a22', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': '7f5e869d-86e7-4e53-9908-a3f2a77561b2', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': 'bf9f381b-057d-43f6-9ef8-707affbd3c04', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': 'eef75b19-41b5-41db-aac0-7f55153cab73', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'cogh'}, {'uuid': '1ae69c5b-d01a-4a8e-b26b-4de27c10b72c', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '6e8601ec-85fd-4ce5-8c26-f8c95a680682', 'type': 'import', 'region': 'pacific', 'name': 'Rayong'}, 'via': 'suez'}, {'uuid': '38d12a0c-9a0e-4288-b6b9-50386776c9c7', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': 'd69eca89-f951-48e6-b2f2-f2252e1fd53a', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': 'aa61dd46-ee0a-4ed7-a1f4-5628e14a80c3', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '5e40c673-fd2d-4749-8b66-75b9a192fe29', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'c57597dd-794e-44b6-9ae7-d9a774107264', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '78391cf0-5b65-45b6-ad72-4a47f8fa3962', 'type': 'import', 'region': 'pacific', 'name': 'Caofeidian'}, 'via': 'suez'}, {'uuid': 'e7eabb12-0f0e-407b-9b50-599579590e32', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '20401d13-3cd9-40e6-ae1c-31afae53d366', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': 'a6a5ca8a-0eb0-45ff-83ae-a56bd1cac50f', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': '7c6fcc8b-f618-479b-adc8-db5f674332a2', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '9856e81d-5a5f-4992-88ab-0d965ac965a8', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': 'af822223-c824-4c40-82d5-6ef6617e43cc', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': '7117e09e-61a0-4264-b5d4-e514e375d43d', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '0e31b6a7-3c33-4e3d-a5d4-503d34aaac28', 'loadPort': {'uuid': 'd4b7a35c-6d78-4130-8636-74b13359cc92', 'type': 'export', 'region': 'pacific', 'name': 'Yamal'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': 'd47d9d80-32d5-41aa-81a4-13d45bfe8705', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '03f345b3-57e6-462a-9cd9-b28c5b3c1c1a', 'type': 'import', 'region': 'atlantic', 'name': 'Dunkerque'}, 'via': None}, {'uuid': '404ceed2-67eb-45fc-8717-c30e259645d2', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': '75e601fe-4b48-424e-ac41-2a1c37319ba1', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '0df4d936-3f96-418a-9072-b51ddec8174f', 'type': 'import', 'region': 'atlantic', 'name': 'Rovigo'}, 'via': None}, {'uuid': '7abe6fc9-eb24-4834-be73-48d05d113f63', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'cogh'}, {'uuid': '7ad59dfa-b0b6-4baa-a79e-2a34b2623ab5', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '1716aff9-60e3-442c-84d4-77d6ac50355d', 'type': 'import', 'region': 'pacific', 'name': 'Hazira'}, 'via': 'suez'}, {'uuid': '263c2ef8-a41e-492c-b121-f244aa19e0bf', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '1d44885e-4389-471f-871b-066b209c238f', 'type': 'import', 'region': 'atlantic', 'name': 'Krk LNG FSRU'}, 'via': None}, {'uuid': '2986e13f-a82a-4715-b640-1be252de722c', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '20446748-34ed-47dd-bec9-36649aaf366e', 'type': 'import', 'region': 'atlantic', 'name': 'Sines'}, 'via': None}, {'uuid': '32c34c63-1a11-4b4d-bb04-7f8aa73aa21f', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '27cbff75-377f-44f0-a576-01e8346bcd4a', 'type': 'import', 'region': 'atlantic', 'name': 'Klaipeda'}, 'via': None}, {'uuid': '21db53e1-0738-4778-8105-c65661c8c033', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'cogh'}, {'uuid': 'd5ec1c76-9757-4bc5-9896-3a13f7897e7c', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'panama'}, {'uuid': '4e02da1e-d9f0-4a3e-912b-d1a09b8390cc', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': 'suez'}, {'uuid': 'c6fd7c83-e11a-48c7-b5bb-7cfc563abe5e', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '340473cf-9a18-4d97-84a6-6110a28542a5', 'type': 'import', 'region': 'atlantic', 'name': 'Eemshaven'}, 'via': None}, {'uuid': '27b8ac6d-100b-48d7-ab66-c8e71e2cbaa0', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '3fe447c1-bb4c-40d7-82a6-ad381c76a3be', 'type': 'import', 'region': 'atlantic', 'name': 'Pecem'}, 'via': None}, {'uuid': 'e22521ba-63d6-4d1e-819c-284f76293859', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '48469a3e-e568-4abf-85cb-f2624fa5b192', 'type': 'import', 'region': 'atlantic', 'name': 'Montoir'}, 'via': None}, {'uuid': '53b8786c-03c7-47f7-b151-872156c5625f', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '61248c8c-c232-4258-aab9-d03bf37cfdd1', 'type': 'import', 'region': 'atlantic', 'name': 'Wilhelmshaven'}, 'via': None}, {'uuid': '539a3289-ff20-4f0c-a6c2-adba6b8c3053', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '636a843d-64fd-4819-999c-14502138e4c3', 'type': 'import', 'region': 'atlantic', 'name': 'Le Havre'}, 'via': None}, {'uuid': '2c5f97a8-f155-41b0-be31-b57237529539', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '678dcf68-521c-4482-b63a-ed01ed50ce3f', 'type': 'combined', 'region': 'atlantic', 'name': 'Barcelona'}, 'via': None}, {'uuid': '6152e43e-6774-4fe4-bf6a-1845bbae22f9', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '69740da7-80ae-4302-984a-657ffafcd6c4', 'type': 'import', 'region': 'atlantic', 'name': 'Grain'}, 'via': None}, {'uuid': 'dff101de-1fa9-4ad6-bfef-9809dbd35b2f', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '73631c05-ce95-4bf3-9f64-e5881b48a08d', 'type': 'import', 'region': 'atlantic', 'name': 'Huelva'}, 'via': None}, {'uuid': '6cb38016-f90d-4baf-b5c8-5241cd692fd9', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '75f5477f-b860-480a-be6b-71e03b73c6ed', 'type': 'combined', 'region': 'atlantic', 'name': 'Zeebrugge'}, 'via': None}, {'uuid': 'c626a76c-4cd6-418d-a5d7-8afb8daba6a5', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '76bec396-72f8-4da1-abc5-36176b10d708', 'type': 'import', 'region': 'atlantic', 'name': 'Deutsche Ostsee'}, 'via': None}, {'uuid': '89eb4c0b-1ab9-41dc-949f-2dc220a41405', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'cogh'}, {'uuid': '7ec3cb91-282c-486f-bd34-5fcc1af942b8', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'panama'}, {'uuid': 'b26bfbcf-5c30-4892-92c9-2bd7eb970152', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': 'suez'}, {'uuid': '3f8e29fb-173b-47ca-bad2-9cd8a4e8360d', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': '95bf7938-56c0-4920-b7ef-49b8aa5d494e', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '819d6caa-08f6-483a-83a8-7bfdafe4c448', 'type': 'import', 'region': 'atlantic', 'name': 'Revithoussa'}, 'via': None}, {'uuid': '7a00d411-f2a9-4849-8ab5-c993c3d12d3b', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': 'suez'}, {'uuid': '28f16ebd-9253-41ec-af6f-873714d7c5a0', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': None}, {'uuid': '5789f8f2-a634-487a-9c76-bd402fc02087', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'a9595237-a0da-4b09-9c48-c0fda332450f', 'type': 'import', 'region': 'atlantic', 'name': 'Toscana'}, 'via': None}, {'uuid': '4d14506e-7c20-4fb6-875c-b5c79b073a0a', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'b4686ba9-7b6b-4cb9-b5b4-8d0eeb4f1810', 'type': 'import', 'region': 'atlantic', 'name': 'Piombino'}, 'via': None}, {'uuid': '80cc2596-fc63-4266-a7ad-134a89420067', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'b713a687-be00-437d-af2c-79a5e4a693cb', 'type': 'import', 'region': 'atlantic', 'name': 'Fos Cavaou'}, 'via': None}, {'uuid': 'd9c0c478-a552-43c8-8e07-307dae82ede9', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'b7a89abe-1dcd-435b-9896-b9b3c19f13e8', 'type': 'import', 'region': 'atlantic', 'name': 'Brunsbuttel'}, 'via': None}, {'uuid': '5d361898-c306-40f0-a881-ccae8b5da53a', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'b86a57f6-39ac-4b21-888f-4bac0d917ca4', 'type': 'import', 'region': 'atlantic', 'name': 'Swinoujscie'}, 'via': None}, {'uuid': '4342a867-8a7c-4aa1-8d98-c57aad8c1ec9', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'cogh'}, {'uuid': 'dd6a70d2-6130-4b1f-8c52-c65ebc5e85f8', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'panama'}, {'uuid': '9524a08d-ac0f-499e-be9b-16b0d555ea8d', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'beda3bf1-4da7-4c34-a1fe-e8715028ef60', 'type': 'import', 'region': 'pacific', 'name': 'Tianjin'}, 'via': 'suez'}, {'uuid': '1f5d678c-ab31-404c-a139-e8a57d646f9b', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'cogh'}, {'uuid': '1a79af23-1590-456b-8e71-2fea45985977', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': 'suez'}, {'uuid': 'ee11aa2d-eaae-49c1-8321-ad3f42dbdacd', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'd26a88a8-b708-4607-8144-97e0225d01e1', 'type': 'import', 'region': 'atlantic', 'name': 'Inkoo'}, 'via': None}, {'uuid': '66270a57-c1b6-4aa4-9b25-5e800358d571', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'cogh'}, {'uuid': '5fda7709-f665-4382-a031-2604e74d4b85', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'panama'}, {'uuid': 'bd684200-2277-4e8b-ba1f-918576847d20', 'loadPort': {'uuid': 'e27bf478-92df-43f0-876a-6e730a268c8f', 'type': 'export', 'region': 'atlantic', 'name': 'Cove Point'}, 'dischargePort': {'uuid': 'd54179f1-c3c3-498c-883d-4a1cc532c191', 'type': 'import', 'region': 'pacific', 'name': 'Yung An'}, 'via': 'suez'}, {'uuid': '524b97bb-77f6-44d2-bf88-80819feaaac2', 'loadPort': {'uuid': 'e3096493-33a3-428e-bb18-8c14c1679377', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'e277c390-24b8-4270-8724-0ebd7aa36113', 'loadPort': {'uuid': 'e3096493-33a3-428e-bb18-8c14c1679377', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'cogh'}, {'uuid': '7529a052-b07c-4d88-a9f2-2c03f45da56b', 'loadPort': {'uuid': 'e3096493-33a3-428e-bb18-8c14c1679377', 'type': 'export', 'region': 'pacific', 'name': 'Tangguh'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'suez'}, {'uuid': '736f7b86-a8f9-40fe-a8f5-4ad58cd402c8', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': 'suez'}, {'uuid': '0d3f23d9-eddf-4bff-9578-686e7eb79b96', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '08959b17-bfdc-47f2-9150-1e090651e871', 'type': 'import', 'region': 'atlantic', 'name': 'Aliaga'}, 'via': None}, {'uuid': 'd5d67da7-fab3-40a5-b855-9f1932f44ab4', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '25de92a4-6b18-4ed5-98d9-6583ceccefc9', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'd78d58db-9bcd-495c-bb19-82d309bc68b5', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': '8ddc9866-e8e7-4dda-9897-d96b9e345a88', 'type': 'import', 'region': 'pacific', 'name': 'Al Zour'}, 'via': None}, {'uuid': 'ac21d368-9601-4142-9b14-39a8b9585a53', 'loadPort': {'uuid': 'e77532d5-3a8b-445d-8a8d-b45dace4e11d', 'type': 'export', 'region': 'atlantic', 'name': 'Soyo'}, 'dischargePort': {'uuid': 'c4727c2c-e6ca-429e-8ba8-cbde73f52ba5', 'type': 'import', 'region': 'pacific', 'name': 'Dahej'}, 'via': None}, {'uuid': '09711da4-a1da-4201-a6d6-ee61c2d76cc7', 'loadPort': {'uuid': 'e946cb60-4d57-4620-a4b1-fb3bdd40e78f', 'type': 'export', 'region': 'pacific', 'name': 'Port Moresby'}, 'dischargePort': {'uuid': 'd95c7a7f-9923-4041-9892-6e48dd4670e7', 'type': 'import', 'region': 'pacific', 'name': 'Shenzhen'}, 'via': None}, {'uuid': '899d64e3-d7c8-4ef6-8c26-56d0856b601a', 'loadPort': {'uuid': 'eca96fcb-b96c-4acb-8694-5327d4b4d57c', 'type': 'export', 'region': 'atlantic', 'name': 'Woodfibre LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': 'db584026-7e97-4b21-9cde-e3a49edaa05d', 'loadPort': {'uuid': 'eca96fcb-b96c-4acb-8694-5327d4b4d57c', 'type': 'export', 'region': 'atlantic', 'name': 'Woodfibre LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '6618319c-f50f-4b3d-86d5-65431cf39579', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '2a8c397c-dd83-4cfc-8b42-45ed4769d136', 'type': 'import', 'region': 'pacific', 'name': 'Incheon'}, 'via': None}, {'uuid': 'ea31c825-2817-4784-8fc8-14a417fee31a', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13', 'type': 'import', 'region': 'pacific', 'name': 'Futtsu'}, 'via': None}, {'uuid': '2d2d4720-dd8d-4da2-9427-574507c5ec43', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': 'panama'}, {'uuid': '22819958-2704-4a3f-a402-b389350aa417', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '783459d0-c0b2-441f-83d7-8e60fa09ca9e', 'type': 'combined', 'region': 'pacific', 'name': 'Gate'}, 'via': None}, {'uuid': 'c71b808f-ef80-4cda-83e3-4957dc56390a', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'magellan-straits'}, {'uuid': '21951628-bfe9-4e0b-b4af-a8208fe93dc6', 'loadPort': {'uuid': 'fb65b8bc-da05-466f-9f43-39a5cffc113b', 'type': 'export', 'region': 'pacific', 'name': 'Peru LNG'}, 'dischargePort': {'uuid': '9931bd05-1019-4f2a-9689-847ca19c3a18', 'type': 'import', 'region': 'atlantic', 'name': 'Dragon'}, 'via': 'panama'}], 'sparkReleaseDates': ['2024-09-27', '2024-09-26', '2024-09-25', '2024-09-24', '2024-09-23', '2024-09-20', '2024-09-19', '2024-09-18', '2024-09-17', '2024-09-16', '2024-09-13', '2024-09-12', '2024-09-11', '2024-09-10', '2024-09-09', '2024-09-06', '2024-09-05', '2024-09-04', '2024-09-03', '2024-09-02', '2024-08-30', '2024-08-29', '2024-08-28', '2024-08-27', '2024-08-23', '2024-08-22', '2024-08-21', '2024-08-20', '2024-08-19', '2024-08-16', '2024-08-15', '2024-08-14', '2024-08-13', '2024-08-12', '2024-08-09', '2024-08-08', '2024-08-07', '2024-08-06', '2024-08-05', '2024-08-02', '2024-08-01', '2024-07-31', '2024-07-30', '2024-07-29', '2024-07-26', '2024-07-25', '2024-07-24', '2024-07-23', '2024-07-22', '2024-07-19', '2024-07-18', '2024-07-17', '2024-07-16', '2024-07-15', '2024-07-12', '2024-07-11', '2024-07-10', '2024-07-09', '2024-07-08', '2024-07-05', '2024-07-04', '2024-07-03', '2024-07-02', '2024-07-01', '2024-06-28', '2024-06-27', '2024-06-26', '2024-06-25', '2024-06-24', '2024-06-21', '2024-06-20', '2024-06-19', '2024-06-18', '2024-06-17', '2024-06-14', '2024-06-13', '2024-06-12', '2024-06-11', '2024-06-10', '2024-06-07', '2024-06-06', '2024-06-05', '2024-06-04', '2024-06-03', '2024-05-31', '2024-05-30', '2024-05-29', '2024-05-28', '2024-05-24', '2024-05-23', '2024-05-22', '2024-05-21', '2024-05-20', '2024-05-17', '2024-05-16', '2024-05-15', '2024-05-14', '2024-05-13', '2024-05-10', '2024-05-09', '2024-05-08', '2024-05-07', '2024-05-03', '2024-05-02', '2024-05-01', '2024-04-30', '2024-04-29', '2024-04-26', '2024-04-25', '2024-04-24', '2024-04-23', '2024-04-22', '2024-04-19', '2024-04-18', '2024-04-17', '2024-04-16', '2024-04-15', '2024-04-12', '2024-04-11', '2024-04-10', '2024-04-09', '2024-04-08', '2024-04-05', '2024-04-04', '2024-04-03', '2024-04-02', '2024-03-28', '2024-03-27', '2024-03-26', '2024-03-25', '2024-03-22', '2024-03-21', '2024-03-20', '2024-03-19', '2024-03-18', '2024-03-15', '2024-03-14', '2024-03-13', '2024-03-12', '2024-03-11', '2024-03-08', '2024-03-07', '2024-03-06', '2024-03-05', '2024-03-04', '2024-03-01', '2024-02-29', '2024-02-28', '2024-02-27', '2024-02-26', '2024-02-23', '2024-02-22', '2024-02-21', '2024-02-20', '2024-02-19', '2024-02-16', '2024-02-15', '2024-02-14', '2024-02-13', '2024-02-12', '2024-02-09', '2024-02-08', '2024-02-07', '2024-02-06', '2024-02-05', '2024-02-02', '2024-02-01', '2024-01-31', '2024-01-30', '2024-01-29', '2024-01-26', '2024-01-25', '2024-01-24', '2024-01-23', '2024-01-22', '2024-01-19', '2024-01-18', '2024-01-17', '2024-01-16', '2024-01-15', '2024-01-12', '2024-01-11', '2024-01-10', '2024-01-09', '2024-01-08', '2024-01-05', '2024-01-04', '2024-01-03', '2024-01-02', '2023-12-29', '2023-12-28', '2023-12-27', '2023-12-22', '2023-12-21', '2023-12-20', '2023-12-19', '2023-12-18', '2023-12-15', '2023-12-14', '2023-12-13', '2023-12-12', '2023-12-11', '2023-12-08', '2023-12-07', '2023-12-06', '2023-12-05', '2023-12-04', '2023-12-01', '2023-11-30', '2023-11-29', '2023-11-28', '2023-11-27', '2023-11-24', '2023-11-23', '2023-11-22', '2023-11-21', '2023-11-20', '2023-11-17', '2023-11-16', '2023-11-15', '2023-11-14', '2023-11-13', '2023-11-10', '2023-11-09', '2023-11-08', '2023-11-07', '2023-11-06', '2023-11-03', '2023-11-02', '2023-11-01', '2023-10-31', '2023-10-30', '2023-10-27', '2023-10-26', '2023-10-25', '2023-10-24', '2023-10-23', '2023-10-20', '2023-10-19', '2023-10-18', '2023-10-17', '2023-10-16', '2023-10-13', '2023-10-12', '2023-10-11', '2023-10-10', '2023-10-09', '2023-10-06', '2023-10-05', '2023-10-04', '2023-10-03', '2023-10-02', '2023-09-29', '2023-09-28', '2023-09-27', '2023-09-26', '2023-09-25', '2023-09-22', '2023-09-21', '2023-09-20', '2023-09-19', '2023-09-18', '2023-09-15', '2023-09-14', '2023-09-13', '2023-09-12', '2023-09-11', '2023-09-08', '2023-09-07', '2023-09-06', '2023-09-05', '2023-09-04', '2023-09-01', '2023-08-31', '2023-08-30', '2023-08-29', '2023-08-25', '2023-08-24', '2023-08-23', '2023-08-22', '2023-08-21', '2023-08-18', '2023-08-17', '2023-08-16', '2023-08-15', '2023-08-14', '2023-08-11', '2023-08-10', '2023-08-09', '2023-08-08', '2023-08-07', '2023-08-04', '2023-08-03', '2023-08-02', '2023-08-01', '2023-07-31', '2023-07-28', '2023-07-27', '2023-07-26', '2023-07-25', '2023-07-24', '2023-07-21', '2023-07-20', '2023-07-19', '2023-07-18', '2023-07-17', '2023-07-14', '2023-07-13', '2023-07-12', '2023-07-11', '2023-07-10', '2023-07-07', '2023-07-06', '2023-07-05', '2023-07-04', '2023-07-03', '2023-06-30', '2023-06-29', '2023-06-28', '2023-06-27', '2023-06-26', '2023-06-23', '2023-06-22', '2023-06-21', '2023-06-20', '2023-06-19', '2023-06-16', '2023-06-15', '2023-06-14', '2023-06-13', '2023-06-12', '2023-06-09', '2023-06-08', '2023-06-07', '2023-06-06', '2023-06-05', '2023-06-02', '2023-06-01', '2023-05-31', '2023-05-30', '2023-05-26', '2023-05-25', '2023-05-24', '2023-05-23', '2023-05-22', '2023-05-19', '2023-05-18', '2023-05-17', '2023-05-16', '2023-05-15', '2023-05-12', '2023-05-11', '2023-05-10', '2023-05-09', '2023-05-05', '2023-05-04', '2023-05-03', '2023-05-02', '2023-04-28', '2023-04-27', '2023-04-26', '2023-04-25', '2023-04-24', '2023-04-21', '2023-04-20', '2023-04-19', '2023-04-18', '2023-04-17', '2023-04-14', '2023-04-13', '2023-04-12', '2023-04-11', '2023-04-06', '2023-04-05', '2023-04-04', '2023-04-03', '2023-03-31', '2023-03-30', '2023-03-29', '2023-03-28', '2023-03-27', '2023-03-24', '2023-03-23', '2023-03-22', '2023-03-21', '2023-03-20', '2023-03-17', '2023-03-16', '2023-03-15', '2023-03-14', '2023-03-13', '2023-03-10', '2023-03-09', '2023-03-08', '2023-03-07', '2023-03-06', '2023-03-03', '2023-03-02', '2023-03-01', '2023-02-28', '2023-02-27', '2023-02-24', '2023-02-23', '2023-02-22', '2023-02-21', '2023-02-20', '2023-02-17', '2023-02-16', '2023-02-15', '2023-02-14', '2023-02-13', '2023-02-10', '2023-02-09', '2023-02-08', '2023-02-07', '2023-02-06', '2023-02-03', '2023-02-02', '2023-02-01', '2023-01-31', '2023-01-30', '2023-01-27', '2023-01-26', '2023-01-25', '2023-01-24', '2023-01-23', '2023-01-20', '2023-01-19', '2023-01-18', '2023-01-17', '2023-01-16', '2023-01-13', '2023-01-12', '2023-01-11', '2023-01-10', '2023-01-09', '2023-01-06', '2023-01-05', '2023-01-04', '2023-01-03', '2022-12-30', '2022-12-29', '2022-12-28', '2022-12-23', '2022-12-22', '2022-12-21', '2022-12-20', '2022-12-19', '2022-12-16', '2022-12-15', '2022-12-14', '2022-12-13', '2022-12-12', '2022-12-09', '2022-12-08', '2022-12-07', '2022-12-06', '2022-12-05', '2022-12-02', '2022-12-01', '2022-11-30', '2022-11-29', '2022-11-28', '2022-11-25', '2022-11-24', '2022-11-23', '2022-11-22', '2022-11-21', '2022-11-18', '2022-11-17', '2022-11-16', '2022-11-15', '2022-11-14', '2022-11-11', '2022-11-10', '2022-11-09', '2022-11-08', '2022-11-07', '2022-11-04', '2022-11-03', '2022-11-02', '2022-11-01', '2022-10-31', '2022-10-28', '2022-10-27', '2022-10-26', '2022-10-25', '2022-10-24', '2022-10-21', '2022-10-20', '2022-10-19', '2022-10-18', '2022-10-17', '2022-10-14', '2022-10-13', '2022-10-12', '2022-10-11', '2022-10-10', '2022-10-07', '2022-10-06', '2022-10-05', '2022-10-04', '2022-10-03', '2022-09-30', '2022-09-29', '2022-09-28', '2022-09-27', '2022-09-26', '2022-09-23', '2022-09-22', '2022-09-21', '2022-09-20', '2022-09-16', '2022-09-15', '2022-09-14', '2022-09-13', '2022-09-12', '2022-09-09', '2022-09-08', '2022-09-07', '2022-09-06', '2022-09-05', '2022-09-02', '2022-09-01', '2022-08-31', '2022-08-30', '2022-08-26', '2022-08-25', '2022-08-24', '2022-08-23', '2022-08-22', '2022-08-19', '2022-08-18', '2022-08-17', '2022-08-16', '2022-08-15', '2022-08-12', '2022-08-11', '2022-08-10', '2022-08-09', '2022-08-08', '2022-08-05', '2022-08-04', '2022-08-03', '2022-08-02', '2022-08-01', '2022-07-29', '2022-07-28', '2022-07-27', '2022-07-26', '2022-07-25', '2022-07-22', '2022-07-21', '2022-07-20', '2022-07-19', '2022-07-18', '2022-07-15', '2022-07-14', '2022-07-13', '2022-07-12', '2022-07-11', '2022-07-08', '2022-07-07', '2022-07-06', '2022-07-05', '2022-07-04', '2022-07-01', '2022-06-30', '2022-06-29', '2022-06-28', '2022-06-27', '2022-06-24', '2022-06-23', '2022-06-22', '2022-06-21', '2022-06-20', '2022-06-17', '2022-06-16', '2022-06-15', '2022-06-14', '2022-06-13', '2022-06-10', '2022-06-09', '2022-06-08', '2022-06-07', '2022-06-06', '2022-06-01', '2022-05-31', '2022-05-30', '2022-05-27', '2022-05-26', '2022-05-25', '2022-05-24', '2022-05-23', '2022-05-20', '2022-05-19', '2022-05-18', '2022-05-17', '2022-05-16', '2022-05-13', '2022-05-12', '2022-05-11', '2022-05-10', '2022-05-09', '2022-05-06', '2022-05-05', '2022-05-04', '2022-05-03', '2022-04-29', '2022-04-28', '2022-04-27', '2022-04-26', '2022-04-25', '2022-04-22', '2022-04-21', '2022-04-20', '2022-04-19', '2022-04-14', '2022-04-13', '2022-04-12', '2022-04-11', '2022-04-08', '2022-04-07', '2022-04-06', '2022-04-05', '2022-04-04', '2022-04-01', '2022-03-31', '2022-03-30', '2022-03-29', '2022-03-28', '2022-03-25', '2022-03-24', '2022-03-23', '2022-03-22', '2022-03-21', '2022-03-18', '2022-03-17', '2022-03-16', '2022-03-15', '2022-03-14', '2022-03-11', '2022-03-10', '2022-03-09', '2022-03-08', '2022-03-07', '2022-03-04', '2022-03-03', '2022-03-02', '2022-03-01', '2022-02-28', '2022-02-25', '2022-02-24', '2022-02-23', '2022-02-22', '2022-02-21', '2022-02-18', '2022-02-17', '2022-02-16', '2022-02-15', '2022-02-14', '2022-02-11', '2022-02-10', '2022-02-09', '2022-02-08', '2022-02-07', '2022-02-04', '2022-02-03', '2022-02-02', '2022-02-01', '2022-01-31', '2022-01-28', '2022-01-27', '2022-01-26', '2022-01-25', '2022-01-24', '2022-01-21', '2022-01-20', '2022-01-19', '2022-01-18', '2022-01-17', '2022-01-14', '2022-01-13', '2022-01-12', '2022-01-11', '2022-01-10', '2022-01-07', '2022-01-06', '2022-01-05', '2022-01-04', '2021-12-30', '2021-12-29', '2021-12-23', '2021-12-22', '2021-12-21', '2021-12-20', '2021-12-17', '2021-12-16', '2021-12-15', '2021-12-14', '2021-12-13', '2021-12-10', '2021-12-09', '2021-12-08', '2021-12-07', '2021-12-06', '2021-12-03', '2021-12-02', '2021-12-01', '2021-11-30', '2021-11-29', '2021-11-26', '2021-11-25', '2021-11-24', '2021-11-23', '2021-11-22', '2021-11-19', '2021-11-18', '2021-11-17', '2021-11-16', '2021-11-15', '2021-11-12', '2021-11-11', '2021-11-10', '2021-11-09', '2021-11-08', '2021-11-05', '2021-11-04', '2021-11-03', '2021-11-02', '2021-11-01', '2021-10-29', '2021-10-28', '2021-10-27', '2021-10-26', '2021-10-25', '2021-10-22', '2021-10-21', '2021-10-20', '2021-10-19', '2021-10-18', '2021-10-15', '2021-10-14', '2021-10-13', '2021-10-12', '2021-10-11', '2021-10-08', '2021-10-07', '2021-10-06', '2021-10-05', '2021-10-04', '2021-10-01', '2021-09-30', '2021-09-29', '2021-09-28', '2021-09-27', '2021-09-24', '2021-09-23'], 'congestionDays': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]}\n" ] } ], "source": [ "## Raw dictionary\n", "\n", "print(dicto1)" ] }, { "cell_type": "code", "execution_count": 28, "id": "e75c2b64", "metadata": {}, "outputs": [], "source": [ "## Store route characteristics as a DataFrame\n", "\n", "def check_and_store_characteristics(dict1):\n", " \"\"\"\n", " # Store some of the route characteristics in lists, and check these lists are the same length\n", " # N.B. these are not all the characteristics available!\n", " # Check the Output of the raw dictionary (above) to see all available characteristics.\n", " \"\"\"\n", "\n", " routes_info = {\n", " \"UUID\": [],\n", " \"Load Location\": [],\n", " \"Discharge Location\": [],\n", " \"Via\": [],\n", " \"Load Region\": [],\n", " \"Discharge Region\": [],\n", " \"Load UUID\": [],\n", " \"Discharge UUID\": []\n", " }\n", " for route in dict1[\"routes\"]:\n", " \n", " routes_info['UUID'].append(route[\"uuid\"])\n", " routes_info['Via'].append(route[\"via\"])\n", "\n", " routes_info['Load UUID'].append(route[\"loadPort\"][\"uuid\"])\n", " routes_info['Load Location'].append(route[\"loadPort\"][\"name\"])\n", " routes_info['Load Region'].append(route[\"loadPort\"][\"region\"])\n", "\n", " routes_info['Discharge UUID'].append(route[\"dischargePort\"][\"uuid\"])\n", " routes_info['Discharge Location'].append(route[\"dischargePort\"][\"name\"])\n", " routes_info['Discharge Region'].append(route[\"dischargePort\"][\"region\"])\n", " \n", " \n", " route_df = pd.DataFrame(routes_info)\n", "\n", " return route_df\n" ] }, { "cell_type": "markdown", "id": "b53ee7af", "metadata": {}, "source": [ "### Exploring the data\n" ] }, { "cell_type": "code", "execution_count": 33, "id": "6db5808e", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
UUIDLoad LocationDischarge LocationViaLoad RegionDischarge RegionLoad UUIDDischarge UUID
0b316d72f-00d2-4efa-b393-84efe7ccf131GorgonAliagacoghpacificatlantic03018806-b536-439c-9636-bf615b2c53f608959b17-bfdc-47f2-9150-1e090651e871
168087453-2e63-47fa-8f7b-f2fe2a08c01fGorgonAliagasuezpacificatlantic03018806-b536-439c-9636-bf615b2c53f608959b17-bfdc-47f2-9150-1e090651e871
2526b5467-ec75-4858-bf84-8f3d32b4329aGorgonIncheonNonepacificpacific03018806-b536-439c-9636-bf615b2c53f62a8c397c-dd83-4cfc-8b42-45ed4769d136
3e2b81f8d-06dd-4c2e-a007-3437d0da6e06GorgonMontoircoghpacificatlantic03018806-b536-439c-9636-bf615b2c53f648469a3e-e568-4abf-85cb-f2624fa5b192
49be6331b-9ee5-4211-a6d3-e7fd3922abe8GorgonMontoirsuezpacificatlantic03018806-b536-439c-9636-bf615b2c53f648469a3e-e568-4abf-85cb-f2624fa5b192
\n", "
" ], "text/plain": [ " UUID Load Location Discharge Location \\\n", "0 b316d72f-00d2-4efa-b393-84efe7ccf131 Gorgon Aliaga \n", "1 68087453-2e63-47fa-8f7b-f2fe2a08c01f Gorgon Aliaga \n", "2 526b5467-ec75-4858-bf84-8f3d32b4329a Gorgon Incheon \n", "3 e2b81f8d-06dd-4c2e-a007-3437d0da6e06 Gorgon Montoir \n", "4 9be6331b-9ee5-4211-a6d3-e7fd3922abe8 Gorgon Montoir \n", "\n", " Via Load Region Discharge Region Load UUID \\\n", "0 cogh pacific atlantic 03018806-b536-439c-9636-bf615b2c53f6 \n", "1 suez pacific atlantic 03018806-b536-439c-9636-bf615b2c53f6 \n", "2 None pacific pacific 03018806-b536-439c-9636-bf615b2c53f6 \n", "3 cogh pacific atlantic 03018806-b536-439c-9636-bf615b2c53f6 \n", "4 suez pacific atlantic 03018806-b536-439c-9636-bf615b2c53f6 \n", "\n", " Discharge UUID \n", "0 08959b17-bfdc-47f2-9150-1e090651e871 \n", "1 08959b17-bfdc-47f2-9150-1e090651e871 \n", "2 2a8c397c-dd83-4cfc-8b42-45ed4769d136 \n", "3 48469a3e-e568-4abf-85cb-f2624fa5b192 \n", "4 48469a3e-e568-4abf-85cb-f2624fa5b192 " ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## We use the stored route characteristics to create the dataframe\n", "route_df = check_and_store_characteristics(dicto1)\n", "\n", "route_df.head()" ] }, { "cell_type": "markdown", "id": "2854904d", "metadata": {}, "source": [ "# 3. Analysing a Specific Route\n", "\n", "\n", "Here we define the function that allows us to pull data for a specific route and release date.\n", "\n", "We then define a given route ID ('my_route') and release date ('my_release') below the function, and these values are printed out for the user to check the parameters." ] }, { "cell_type": "code", "execution_count": 30, "id": "c7502772", "metadata": {}, "outputs": [], "source": [ "## Defining the function\n", "\n", "def fetch_route_data(access_token, ticker, release, congestion_laden= None, congestion_ballast= None):\n", " \"\"\"\n", " For a route, fetch then display the route details\n", "\n", " # Procedure:\n", "\n", " Do GET queries to https://api.sparkcommodities.com/v1.0/routes/{route_uuid}/\n", " with a Bearer token authorization HTTP header.\n", " \"\"\"\n", "\n", " query_params = \"?release-date={}\".format(release)\n", " if congestion_laden is not None:\n", " query_params += \"&congestion-laden-days={}\".format(congestion_laden)\n", " if congestion_ballast is not None:\n", " query_params += \"&congestion-ballast-days={}\".format(congestion_ballast)\n", "\n", " uri = \"/v1.0/routes/{}/{}\".format(ticker, query_params)\n", " print(uri)\n", "\n", " content = do_api_get_query(\n", " uri=\"/v1.0/routes/{}/{}\".format(ticker, query_params),\n", " access_token=access_token,\n", " )\n", "\n", " my_dict = content[\"data\"]\n", "\n", " print(\">>>> Get route information for {}\".format(ticker))\n", "\n", " return my_dict" ] }, { "cell_type": "code", "execution_count": 31, "id": "8d57eaef", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/v1.0/routes/e77174a1-777e-4ebe-b1cd-c16e0e0aaf13/?release-date=2024-09-25\n", ">>>> Get route information for e77174a1-777e-4ebe-b1cd-c16e0e0aaf13\n" ] } ], "source": [ "## Calling that function and storing the output\n", "\n", "# Here we store the entire dataset called from the API\n", "\n", "load = 'Sabine Pass'\n", "discharge = 'Futtsu'\n", "via = 'cogh'\n", "\n", "my_route = route_df[(route_df[\"Load Location\"] == load) & \\\n", " (route_df[\"Discharge Location\"] == discharge) & \\\n", " (route_df['Via'] == via)]['UUID'].values[0]\n", "\n", "my_release = '2024-09-25'\n", "\n", "my_dict = fetch_route_data(access_token, my_route, release=my_release)" ] }, { "cell_type": "code", "execution_count": 32, "id": "f70e1b63", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'uuid': 'e77174a1-777e-4ebe-b1cd-c16e0e0aaf13',\n", " 'name': 'Sabine Pass to Futtsu (via COGH)',\n", " 'loadPortUuid': 'c20695bb-306b-4ce5-a8f3-ef5d3769ea7a',\n", " 'dischargePortUuid': '76f7cf7a-2770-4780-a48a-6e6ff9130c13',\n", " 'via': 'cogh',\n", " 'congestionDays': 0,\n", " 'congestionLadenDays': 0,\n", " 'congestionBallastDays': 0,\n", " 'assumptions': [{'type': 'load-port', 'value': 'Sabine Pass', 'unit': None},\n", " {'type': 'discharge-port', 'value': 'Futtsu', 'unit': None},\n", " {'type': 'distance', 'value': '15,855', 'unit': 'NM'},\n", " {'type': 'round-trip-duration', 'value': '83', 'unit': 'days'},\n", " {'type': 'flex-days', 'value': '3', 'unit': 'days'},\n", " {'type': 'port-days', 'value': '2', 'unit': 'days'},\n", " {'type': 'congestion-days', 'value': '0', 'unit': 'days'},\n", " {'type': 'canal-days', 'value': '0', 'unit': 'days'},\n", " {'type': 'discharge-volume', 'value': '3,300,941', 'unit': 'MMBtu'},\n", " {'type': 'discharge-volume-174', 'value': '3,640,864', 'unit': 'MMBtu'},\n", " {'type': 'lng-freight-rate-source', 'value': 'Spark30FFA', 'unit': None},\n", " {'type': 'canal-cost-discount-percentage', 'value': '0', 'unit': None},\n", " {'type': 'canal-cost-discount-percentage-174', 'value': '0', 'unit': None},\n", " {'type': 'port-and-canal-cost-source', 'value': 'GAC', 'unit': None},\n", " {'type': 'vessel-size', 'value': '160,000', 'unit': 'm3'},\n", " {'type': 'vessel-size-174', 'value': '174,000', 'unit': 'm3'},\n", " {'type': 'vessel-speed', 'value': '17', 'unit': 'knots'},\n", " {'type': 'vessel-technology', 'value': 'TFDE', 'unit': None},\n", " {'type': 'vessel-technology-174', 'value': '2 stroke', 'unit': None},\n", " {'type': 'fuel', 'value': 'LNG boil-off', 'unit': None},\n", " {'type': 'boil-off-rate', 'value': '0.10%', 'unit': None},\n", " {'type': 'boil-off-rate-174', 'value': '0.085%', 'unit': None},\n", " {'type': 'lng-price-source', 'value': 'ICE TFU', 'unit': None},\n", " {'type': 'lng-conversion', 'value': '23', 'unit': None}],\n", " 'dataPoints': [{'deliveryPeriod': {'type': 'spot',\n", " 'startAt': '2024-10-10',\n", " 'endAt': '2024-11-09',\n", " 'name': 'Spot (Physical)'},\n", " 'costInUsdPerDay': {'total': '9745145',\n", " 'fuel': '3246887',\n", " 'hire': '6204250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '9745145',\n", " 'fuel': '3246887',\n", " 'hire': '6204250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.68',\n", " 'fuel': '0.89',\n", " 'hire': '1.70',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2024-10-01',\n", " 'endAt': '2024-10-31',\n", " 'name': 'M+1'},\n", " 'costInUsdPerDay': {'total': '10830479',\n", " 'fuel': '3294721',\n", " 'hire': '7241750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '10830479',\n", " 'fuel': '3294721',\n", " 'hire': '7241750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.97',\n", " 'fuel': '0.90',\n", " 'hire': '1.99',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2024-11-01',\n", " 'endAt': '2024-11-30',\n", " 'name': 'M+2'},\n", " 'costInUsdPerDay': {'total': '11035800',\n", " 'fuel': '3354792',\n", " 'hire': '7387000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '11035800',\n", " 'fuel': '3354792',\n", " 'hire': '7387000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '3.03',\n", " 'fuel': '0.92',\n", " 'hire': '2.03',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2024-12-01',\n", " 'endAt': '2024-12-31',\n", " 'name': 'M+3'},\n", " 'costInUsdPerDay': {'total': '9809541',\n", " 'fuel': '3394283',\n", " 'hire': '6121250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '9809541',\n", " 'fuel': '3394283',\n", " 'hire': '6121250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.69',\n", " 'fuel': '0.93',\n", " 'hire': '1.68',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-01-01',\n", " 'endAt': '2025-01-31',\n", " 'name': 'M+4'},\n", " 'costInUsdPerDay': {'total': '8330837',\n", " 'fuel': '3409579',\n", " 'hire': '4627250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '8330837',\n", " 'fuel': '3409579',\n", " 'hire': '4627250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.29',\n", " 'fuel': '0.94',\n", " 'hire': '1.27',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-02-01',\n", " 'endAt': '2025-02-28',\n", " 'name': 'M+5'},\n", " 'costInUsdPerDay': {'total': '7368164',\n", " 'fuel': '3380656',\n", " 'hire': '3693500',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '7368164',\n", " 'fuel': '3380656',\n", " 'hire': '3693500',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.02',\n", " 'fuel': '0.93',\n", " 'hire': '1.01',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-03-01',\n", " 'endAt': '2025-03-31',\n", " 'name': 'M+6'},\n", " 'costInUsdPerDay': {'total': '6829066',\n", " 'fuel': '3298058',\n", " 'hire': '3237000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '6829066',\n", " 'fuel': '3298058',\n", " 'hire': '3237000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '1.88',\n", " 'fuel': '0.91',\n", " 'hire': '0.89',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-04-01',\n", " 'endAt': '2025-04-30',\n", " 'name': 'M+7'},\n", " 'costInUsdPerDay': {'total': '6688606',\n", " 'fuel': '3261348',\n", " 'hire': '3133250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '6688606',\n", " 'fuel': '3261348',\n", " 'hire': '3133250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '1.84',\n", " 'fuel': '0.90',\n", " 'hire': '0.86',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-05-01',\n", " 'endAt': '2025-05-31',\n", " 'name': 'M+8'},\n", " 'costInUsdPerDay': {'total': '6842648',\n", " 'fuel': '3249390',\n", " 'hire': '3299250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '6842648',\n", " 'fuel': '3249390',\n", " 'hire': '3299250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '1.88',\n", " 'fuel': '0.89',\n", " 'hire': '0.91',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-06-01',\n", " 'endAt': '2025-06-30',\n", " 'name': 'M+9'},\n", " 'costInUsdPerDay': {'total': '7620132',\n", " 'fuel': '3259124',\n", " 'hire': '4067000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '7620132',\n", " 'fuel': '3259124',\n", " 'hire': '4067000',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.09',\n", " 'fuel': '0.90',\n", " 'hire': '1.12',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-07-01',\n", " 'endAt': '2025-07-31',\n", " 'name': 'M+10'},\n", " 'costInUsdPerDay': {'total': '8760269',\n", " 'fuel': '3258011',\n", " 'hire': '5208250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '8760269',\n", " 'fuel': '3258011',\n", " 'hire': '5208250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.41',\n", " 'fuel': '0.89',\n", " 'hire': '1.43',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-08-01',\n", " 'endAt': '2025-08-31',\n", " 'name': 'M+11'},\n", " 'costInUsdPerDay': {'total': '10314402',\n", " 'fuel': '3276644',\n", " 'hire': '6743750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '10314402',\n", " 'fuel': '3276644',\n", " 'hire': '6743750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.83',\n", " 'fuel': '0.90',\n", " 'hire': '1.85',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-09-01',\n", " 'endAt': '2025-09-30',\n", " 'name': 'M+12'},\n", " 'costInUsdPerDay': {'total': '12016010',\n", " 'fuel': '3297502',\n", " 'hire': '8424500',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '12016010',\n", " 'fuel': '3297502',\n", " 'hire': '8424500',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '3.30',\n", " 'fuel': '0.91',\n", " 'hire': '2.31',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-10-01',\n", " 'endAt': '2025-10-31',\n", " 'name': 'M+13'},\n", " 'costInUsdPerDay': {'total': '13576029',\n", " 'fuel': '3384271',\n", " 'hire': '9897750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '13576029',\n", " 'fuel': '3384271',\n", " 'hire': '9897750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '3.73',\n", " 'fuel': '0.93',\n", " 'hire': '2.72',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-11-01',\n", " 'endAt': '2025-11-30',\n", " 'name': 'M+14'},\n", " 'costInUsdPerDay': {'total': '13083807',\n", " 'fuel': '3431549',\n", " 'hire': '9358250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '13083807',\n", " 'fuel': '3431549',\n", " 'hire': '9358250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '3.59',\n", " 'fuel': '0.94',\n", " 'hire': '2.57',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'month',\n", " 'startAt': '2025-12-01',\n", " 'endAt': '2025-12-31',\n", " 'name': 'M+15'},\n", " 'costInUsdPerDay': {'total': '10941659',\n", " 'fuel': '3447401',\n", " 'hire': '7200250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '10941659',\n", " 'fuel': '3447401',\n", " 'hire': '7200250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '3.01',\n", " 'fuel': '0.95',\n", " 'hire': '1.98',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'year',\n", " 'startAt': '2025-01-01',\n", " 'endAt': '2025-12-31',\n", " 'name': 'Cal+1'},\n", " 'costInUsdPerDay': {'total': '9364219',\n", " 'fuel': '3329461',\n", " 'hire': '5740750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '9364219',\n", " 'fuel': '3329461',\n", " 'hire': '5740750',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.57',\n", " 'fuel': '0.91',\n", " 'hire': '1.58',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}},\n", " {'deliveryPeriod': {'type': 'year',\n", " 'startAt': '2026-01-01',\n", " 'endAt': '2026-12-31',\n", " 'name': 'Cal+2'},\n", " 'costInUsdPerDay': {'total': '8936423',\n", " 'fuel': '3019165',\n", " 'hire': '5623250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsd': {'total': '8936423',\n", " 'fuel': '3019165',\n", " 'hire': '5623250',\n", " 'port': '294008',\n", " 'canal': '0',\n", " 'carbon': None},\n", " 'costsInUsdPerMmbtu': {'total': '2.45',\n", " 'fuel': '0.83',\n", " 'hire': '1.54',\n", " 'port': '0.08',\n", " 'canal': '0.00',\n", " 'carbon': None}}]}" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## Calling that dictionary to see how it is structured\n", "\n", "my_dict" ] }, { "cell_type": "code", "execution_count": 12, "id": "287ed2ca", "metadata": {}, "outputs": [], "source": [ "## Define a variable storing the route start-end\n", "route_name = my_dict[\"name\"]" ] }, { "cell_type": "markdown", "id": "5b025e65", "metadata": {}, "source": [ "### Storing Data as a DataFrame\n", "\n", "We extract some relevant data for the chosen route, including the spot price and forward prices. These are stored in a Pandas Dataframe for readability and ease of use." ] }, { "cell_type": "code", "execution_count": 35, "id": "74ef56d3", "metadata": {}, "outputs": [], "source": [ "## Defining the function to store as dataframe\n", "def organise_dataframe(my_dict):\n", " my_route = {\n", " \"Period\": [],\n", " \"Start Date\": [],\n", " \"End Date\": [],\n", " \"Cost in USD\": [],\n", " \"Cost in USDperMMBtu\": [],\n", " \"Hire Cost in USD\": [],\n", " }\n", "\n", " for data in my_dict[\"dataPoints\"]:\n", " my_route['Start Date'].append(data[\"deliveryPeriod\"][\"startAt\"])\n", " my_route['End Date'].append(data[\"deliveryPeriod\"][\"endAt\"])\n", " my_route['Period'].append(data[\"deliveryPeriod\"][\"name\"])\n", "\n", " my_route['Cost in USD'].append(data[\"costsInUsd\"][\"total\"])\n", " my_route['Cost in USDperMMBtu'].append(data[\"costsInUsdPerMmbtu\"][\"total\"])\n", "\n", " my_route['Hire Cost in USD'].append(data[\"costsInUsd\"][\"hire\"])\n", "\n", "\n", " my_route_df = pd.DataFrame(my_route)\n", "\n", "\n", " ## Changing the data type of these columns from 'string' to numbers.\n", " ## This allows us to easily plot a forward curve, as well as perform statistical analysis on the prices.\n", " my_route_df[\"Cost in USD\"] = pd.to_numeric(my_route_df[\"Cost in USD\"])\n", " my_route_df[\"Hire Cost in USD\"] = pd.to_numeric(my_route_df[\"Hire Cost in USD\"])\n", " my_route_df[\"Cost in USDperMMBtu\"] = pd.to_numeric(my_route_df[\"Cost in USDperMMBtu\"])\n", " \n", " return my_route_df" ] }, { "cell_type": "code", "execution_count": 37, "id": "6272154a", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
PeriodStart DateEnd DateCost in USDCost in USDperMMBtuHire Cost in USD
0Spot (Physical)2024-10-102024-11-0997451452.686204250
1M+12024-10-012024-10-31108304792.977241750
2M+22024-11-012024-11-30110358003.037387000
3M+32024-12-012024-12-3198095412.696121250
4M+42025-01-012025-01-3183308372.294627250
\n", "
" ], "text/plain": [ " Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n", "0 Spot (Physical) 2024-10-10 2024-11-09 9745145 2.68 \n", "1 M+1 2024-10-01 2024-10-31 10830479 2.97 \n", "2 M+2 2024-11-01 2024-11-30 11035800 3.03 \n", "3 M+3 2024-12-01 2024-12-31 9809541 2.69 \n", "4 M+4 2025-01-01 2025-01-31 8330837 2.29 \n", "\n", " Hire Cost in USD \n", "0 6204250 \n", "1 7241750 \n", "2 7387000 \n", "3 6121250 \n", "4 4627250 " ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "my_route_df = organise_dataframe(my_dict)\n", "my_route_df.head()" ] }, { "cell_type": "markdown", "id": "265dda49", "metadata": {}, "source": [ "# Panama Canal Congestion\n", "\n", "The Spark API allows you to account for congestion delays for any route passing through the Panama canal. This is done via an optional query parameter in the __'fetch_route_data'__ function - 'congestion'.\n", "\n", "- Set the congestion parameter to the amount of delay days needed\n", " - This should be given as an integer: e.g. congestion = 5\n", "- If the congestion parameter is not specified, like in the examples above, the congestion value is set to the default value of 0.\n", "- If the congestion parameter is called for a route that does not go through the Panama canal, then a 404 error will be triggered\n", "\n", "Below is an example of using this congestion parameter." ] }, { "cell_type": "code", "execution_count": 40, "id": "f451dec0", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
UUIDLoad LocationDischarge LocationViaLoad RegionDischarge RegionLoad UUIDDischarge UUID
24e56f097b-71f4-499f-b195-b0cc18949d77AltamiraFuttsupanamaatlanticpacific1ceab408-0ae4-452d-aa4b-da626207261376f7cf7a-2770-4780-a48a-6e6ff9130c13
28f18c7efb-b257-4289-a891-3b2fe9a3b05aPuerto LibertadGatepanamaatlanticpacific1f4b3db1-1d01-42d3-b8a5-50c8b113006e783459d0-c0b2-441f-83d7-8e60fa09ca9e
30203362d2-6518-40f9-8b07-7c4ad003f77dLNG CanadaGatepanamaatlanticpacific39a76204-c5cb-43ce-bef9-7ceafd4ff758783459d0-c0b2-441f-83d7-8e60fa09ca9e
33dff6637f-e29a-4d1e-b859-e5177e417b55Delfin FLNGFuttsupanamaatlanticpacific4011700f-1bae-4e60-81a0-cf10be07536d76f7cf7a-2770-4780-a48a-6e6ff9130c13
82044d20c5-b255-49b4-ac98-e628c9119188Bonny LNGQuinteropanamaatlanticpacific41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9ccf768d6-7b75-4da6-bb99-d821ee00b8ca
\n", "
" ], "text/plain": [ " UUID Load Location Discharge Location \\\n", "24 e56f097b-71f4-499f-b195-b0cc18949d77 Altamira Futtsu \n", "28 f18c7efb-b257-4289-a891-3b2fe9a3b05a Puerto Libertad Gate \n", "30 203362d2-6518-40f9-8b07-7c4ad003f77d LNG Canada Gate \n", "33 dff6637f-e29a-4d1e-b859-e5177e417b55 Delfin FLNG Futtsu \n", "82 044d20c5-b255-49b4-ac98-e628c9119188 Bonny LNG Quintero \n", "\n", " Via Load Region Discharge Region Load UUID \\\n", "24 panama atlantic pacific 1ceab408-0ae4-452d-aa4b-da6262072613 \n", "28 panama atlantic pacific 1f4b3db1-1d01-42d3-b8a5-50c8b113006e \n", "30 panama atlantic pacific 39a76204-c5cb-43ce-bef9-7ceafd4ff758 \n", "33 panama atlantic pacific 4011700f-1bae-4e60-81a0-cf10be07536d \n", "82 panama atlantic pacific 41c2d5aa-4a88-48b4-8e98-5a6bcc3d36f9 \n", "\n", " Discharge UUID \n", "24 76f7cf7a-2770-4780-a48a-6e6ff9130c13 \n", "28 783459d0-c0b2-441f-83d7-8e60fa09ca9e \n", "30 783459d0-c0b2-441f-83d7-8e60fa09ca9e \n", "33 76f7cf7a-2770-4780-a48a-6e6ff9130c13 \n", "82 ccf768d6-7b75-4da6-bb99-d821ee00b8ca " ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "## First, check which routes go via the Panama canal\n", "\n", "route_df[route_df[\"Via\"] == \"panama\"].head()" ] }, { "cell_type": "code", "execution_count": 41, "id": "5fd0df54", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/v1.0/routes/645f1a6d-dd5d-432c-8fac-2903c412ca4c/?release-date=2024-09-17&congestion-laden-days=5&congestion-ballast-days=5\n", ">>>> Get route information for 645f1a6d-dd5d-432c-8fac-2903c412ca4c\n" ] } ], "source": [ "# Specify which route we want to use ('cong_route'): we can find specific routes by filtering the dataframe.\n", "# as well as release date ('cong_release')\n", "# and amount of congestion days (cong_days)\n", "\n", "cong_route = route_df[(route_df['Via']=='panama') & \\\n", " (route_df['Load Location'] == 'Sabine Pass') & \\\n", " (route_df['Discharge Location'] == 'Futtsu')]['UUID'].tolist()[0]\n", "cong_release = reldates[8]\n", "cong_days_laden = 5\n", "cong_days_ballast = 5\n", "\n", "# Fetch the route data with these specifications\n", "cong_dict = fetch_route_data(\n", " access_token, cong_route, release=cong_release, congestion_laden=cong_days_laden, congestion_ballast=cong_days_ballast\n", ")" ] }, { "cell_type": "code", "execution_count": 42, "id": "87380280", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "/v1.0/routes/645f1a6d-dd5d-432c-8fac-2903c412ca4c/?release-date=2024-09-17\n", ">>>> Get route information for 645f1a6d-dd5d-432c-8fac-2903c412ca4c\n" ] } ], "source": [ "# Fetching data for the same route but without congestion delays ('nocong_dict'), for comparison\n", "nocong_dict = fetch_route_data(access_token, cong_route, release=cong_release)\n", "\n", "# Save the name of the route\n", "congroute_name = nocong_dict[\"name\"]" ] }, { "cell_type": "code", "execution_count": 43, "id": "af51ebe7", "metadata": {}, "outputs": [], "source": [ "# Call the 'organise_dataframe' function to organise the dictionary into a readable dataframe.\n", "# Applying function to dictionaries\n", "cong_df = organise_dataframe(cong_dict)\n", "nocong_df = organise_dataframe(nocong_dict)" ] }, { "cell_type": "code", "execution_count": 44, "id": "732aca68", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
PeriodStart DateEnd DateCost in USDCost in USDperMMBtuHire Cost in USD
0Spot (Physical)2024-10-022024-11-0184600832.283604500
1M+12024-10-012024-10-3198226082.654725000
2M+22024-11-012024-11-30105388672.845278500
3M+32024-12-012024-12-3197872472.644617000
4M+42025-01-012025-01-3184226132.273456000
\n", "
" ], "text/plain": [ " Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n", "0 Spot (Physical) 2024-10-02 2024-11-01 8460083 2.28 \n", "1 M+1 2024-10-01 2024-10-31 9822608 2.65 \n", "2 M+2 2024-11-01 2024-11-30 10538867 2.84 \n", "3 M+3 2024-12-01 2024-12-31 9787247 2.64 \n", "4 M+4 2025-01-01 2025-01-31 8422613 2.27 \n", "\n", " Hire Cost in USD \n", "0 3604500 \n", "1 4725000 \n", "2 5278500 \n", "3 4617000 \n", "4 3456000 " ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cong_df.head()" ] }, { "cell_type": "code", "execution_count": 45, "id": "b3bd0178", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
PeriodStart DateEnd DateCost in USDCost in USDperMMBtuHire Cost in USD
0Spot (Physical)2024-10-022024-11-0174065181.983604500
1M+12024-10-012024-10-3185561492.294725000
2M+22024-11-012024-11-3091604922.455278500
3M+32024-12-012024-12-3185263132.284617000
4M+42025-01-012025-01-3173749031.973456000
\n", "
" ], "text/plain": [ " Period Start Date End Date Cost in USD Cost in USDperMMBtu \\\n", "0 Spot (Physical) 2024-10-02 2024-11-01 7406518 1.98 \n", "1 M+1 2024-10-01 2024-10-31 8556149 2.29 \n", "2 M+2 2024-11-01 2024-11-30 9160492 2.45 \n", "3 M+3 2024-12-01 2024-12-31 8526313 2.28 \n", "4 M+4 2025-01-01 2025-01-31 7374903 1.97 \n", "\n", " Hire Cost in USD \n", "0 3604500 \n", "1 4725000 \n", "2 5278500 \n", "3 4617000 \n", "4 3456000 " ] }, "execution_count": 45, "metadata": {}, "output_type": "execute_result" } ], "source": [ "nocong_df.head()" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "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.9.6" } }, "nbformat": 4, "nbformat_minor": 5 }