diff --git "a/IS424_Data_Mining/code/NER/Named_Entity_Recognition.ipynb" "b/IS424_Data_Mining/code/NER/Named_Entity_Recognition.ipynb" new file mode 100644--- /dev/null +++ "b/IS424_Data_Mining/code/NER/Named_Entity_Recognition.ipynb" @@ -0,0 +1,1140 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "36db29d1", + "metadata": {}, + "source": [ + "## Download dependencies" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "f6a4bc9f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: spacy in /Users/barebear/anaconda3/lib/python3.11/site-packages (3.7.2)\n", + "Requirement already satisfied: spacy-legacy<3.1.0,>=3.0.11 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (3.0.12)\n", + "Requirement already satisfied: spacy-loggers<2.0.0,>=1.0.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (1.0.5)\n", + "Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (1.0.10)\n", + "Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (2.0.8)\n", + "Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (3.0.9)\n", + "Requirement already satisfied: thinc<8.3.0,>=8.1.8 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (8.2.3)\n", + "Requirement already satisfied: wasabi<1.2.0,>=0.9.1 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (1.1.2)\n", + "Requirement already satisfied: srsly<3.0.0,>=2.4.3 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (2.4.8)\n", + "Requirement already satisfied: catalogue<2.1.0,>=2.0.6 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (2.0.10)\n", + "Requirement already satisfied: weasel<0.4.0,>=0.1.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (0.3.4)\n", + "Requirement already satisfied: typer<0.10.0,>=0.3.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (0.9.0)\n", + "Requirement already satisfied: smart-open<7.0.0,>=5.2.1 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (5.2.1)\n", + "Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (4.65.0)\n", + "Requirement already satisfied: requests<3.0.0,>=2.13.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (2.31.0)\n", + "Requirement already satisfied: pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (1.10.12)\n", + "Requirement already satisfied: jinja2 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (3.1.2)\n", + "Requirement already satisfied: setuptools in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (68.0.0)\n", + "Requirement already satisfied: packaging>=20.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (23.0)\n", + "Requirement already satisfied: langcodes<4.0.0,>=3.2.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (3.3.0)\n", + "Requirement already satisfied: numpy>=1.19.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from spacy) (1.24.3)\n", + "Requirement already satisfied: typing-extensions>=4.2.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy) (4.7.1)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy) (3.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy) (1.26.16)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy) (2023.11.17)\n", + "Requirement already satisfied: blis<0.8.0,>=0.7.8 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from thinc<8.3.0,>=8.1.8->spacy) (0.7.11)\n", + "Requirement already satisfied: confection<1.0.0,>=0.0.1 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from thinc<8.3.0,>=8.1.8->spacy) (0.1.4)\n", + "Requirement already satisfied: click<9.0.0,>=7.1.1 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from typer<0.10.0,>=0.3.0->spacy) (8.1.7)\n", + "Requirement already satisfied: cloudpathlib<0.17.0,>=0.7.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from weasel<0.4.0,>=0.1.0->spacy) (0.16.0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /Users/barebear/anaconda3/lib/python3.11/site-packages (from jinja2->spacy) (2.1.1)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install spacy\n" + ] + }, + { + "cell_type": "markdown", + "id": "67fa0b67", + "metadata": {}, + "source": [ + "## Import" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "8222d430", + "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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idHeadlineDetailsSeverityCategoryRegionDatetimeYearlatlonmaritime_labelfound_portscontains_port_infoif_labeledMonthWeekHeadline_Details
01.0Grasberg Mine- Grasberg mine workers extend st...Media sources indicate that workers at the Gra...ModerateMine Workers StrikeIndonesia28/5/17 17:082017.0-4.05608137.11302False['freeport']1.0False5.021.0Grasberg Mine- Grasberg mine workers extend st...
12.0Indonesia: Undersea internet cables damaged by...News sources are stating that recent typhoons ...MinorTravel WarningIndonesia4/9/17 14:302017.0NaNNaNFalse['hong kong']1.0False4.014.0Indonesia: Undersea internet cables damaged by...
23.0Shanghai port congestion impacts terminals in ...The persisting port congestion at Shanghai’s Y...MinorPort CongestionChina27/4/17 9:162017.029.52000121.33190True['ningbo', 'qingdao', 'shanghai']1.0False4.017.0Shanghai port congestion impacts terminals in ...
34.0UPDATE - Indonesia: Explosion at KP Terminal i...Updated local media sources from Jakarta indic...ExtremeBombing, Police OperationsIndonesia24/5/17 15:152017.0-6.22465106.86700True['jakarta']1.0False5.021.0UPDATE - Indonesia: Explosion at KP Terminal i...
45.0UPDATE - Indonesia: Police confirm two explosi...According to local police in Jakarta, two expl...ExtremeBombing, Police OperationsIndonesia24/5/17 16:202017.0NaNNaNTrue['jakarta']1.0True5.021.0UPDATE - Indonesia: Police confirm two explosi...
\n", + "
" + ], + "text/plain": [ + " id Headline \\\n", + "0 1.0 Grasberg Mine- Grasberg mine workers extend st... \n", + "1 2.0 Indonesia: Undersea internet cables damaged by... \n", + "2 3.0 Shanghai port congestion impacts terminals in ... \n", + "3 4.0 UPDATE - Indonesia: Explosion at KP Terminal i... \n", + "4 5.0 UPDATE - Indonesia: Police confirm two explosi... \n", + "\n", + " Details Severity \\\n", + "0 Media sources indicate that workers at the Gra... Moderate \n", + "1 News sources are stating that recent typhoons ... Minor \n", + "2 The persisting port congestion at Shanghai’s Y... Minor \n", + "3 Updated local media sources from Jakarta indic... Extreme \n", + "4 According to local police in Jakarta, two expl... Extreme \n", + "\n", + " Category Region Datetime Year lat \\\n", + "0 Mine Workers Strike Indonesia 28/5/17 17:08 2017.0 -4.05608 \n", + "1 Travel Warning Indonesia 4/9/17 14:30 2017.0 NaN \n", + "2 Port Congestion China 27/4/17 9:16 2017.0 29.52000 \n", + "3 Bombing, Police Operations Indonesia 24/5/17 15:15 2017.0 -6.22465 \n", + "4 Bombing, Police Operations Indonesia 24/5/17 16:20 2017.0 NaN \n", + "\n", + " lon maritime_label found_ports \\\n", + "0 137.11302 False ['freeport'] \n", + "1 NaN False ['hong kong'] \n", + "2 121.33190 True ['ningbo', 'qingdao', 'shanghai'] \n", + "3 106.86700 True ['jakarta'] \n", + "4 NaN True ['jakarta'] \n", + "\n", + " contains_port_info if_labeled Month Week \\\n", + "0 1.0 False 5.0 21.0 \n", + "1 1.0 False 4.0 14.0 \n", + "2 1.0 False 4.0 17.0 \n", + "3 1.0 False 5.0 21.0 \n", + "4 1.0 True 5.0 21.0 \n", + "\n", + " Headline_Details \n", + "0 Grasberg Mine- Grasberg mine workers extend st... \n", + "1 Indonesia: Undersea internet cables damaged by... \n", + "2 Shanghai port congestion impacts terminals in ... \n", + "3 UPDATE - Indonesia: Explosion at KP Terminal i... \n", + "4 UPDATE - Indonesia: Police confirm two explosi... " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import spacy\n", + "import pandas as pd\n", + "import numpy as np\n", + "import re\n", + "nlp = spacy.load(\"en_core_web_sm\")\n", + "\n", + "df = pd.read_csv('cleaned_data.csv')\n", + "df = df[df['Headline'].apply(lambda x: not isinstance(x, float))]\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "37533078", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Index: 5780 entries, 0 to 5781\n", + "Data columns (total 17 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 id 5780 non-null float64\n", + " 1 Headline 5780 non-null object \n", + " 2 Details 5780 non-null object \n", + " 3 Severity 5780 non-null object \n", + " 4 Category 5780 non-null object \n", + " 5 Region 5780 non-null object \n", + " 6 Datetime 5780 non-null object \n", + " 7 Year 5780 non-null float64\n", + " 8 lat 3881 non-null float64\n", + " 9 lon 3881 non-null float64\n", + " 10 maritime_label 5780 non-null object \n", + " 11 found_ports 5778 non-null object \n", + " 12 contains_port_info 5778 non-null float64\n", + " 13 if_labeled 5778 non-null object \n", + " 14 Month 5778 non-null float64\n", + " 15 Week 5778 non-null float64\n", + " 16 Headline_Details 5778 non-null object \n", + "dtypes: float64(7), object(10)\n", + "memory usage: 812.8+ KB\n" + ] + } + ], + "source": [ + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "7a8678d9", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5078 Daily COVID-19 roundup: Serum Institute sets p...\n", + "5080 Daily COVID-19 roundup: US’s COVAXX enters USD...\n", + "5082 Delays in berth plan reported at Virginia Inte...\n", + "5083 Delhi Metropolitan Magistrate extended by 14 d...\n", + "5084 Disruption reported to rail services transitin...\n", + "5085 Disruption to rail services occurring at Crewe...\n", + "5086 Disruption to rail services occurring between ...\n", + "5087 Disruptions Possible as Bangladesh Begins Relo...\n", + "5088 Disruptions reported across Liguria Region due...\n", + "5089 Dockworker suffers fall on coastguard ship at ...\n", + "5090 'Doctor's Day' protests and strike actions ann...\n", + "5091 Dow declares force majeure on all MDI products...\n", + "5092 DP World Fremantle workers to stage an industr...\n", + "5093 DP World Southampton resumes operations follow...\n", + "Name: Headline, dtype: object" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Headline'][5078:5092]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "33f5df1c", + "metadata": {}, + "outputs": [], + "source": [ + "def extract_entities(text):\n", + " # Process the text using spaCy NER\n", + " doc = nlp(text)\n", + " entities = [(ent.text, ent.label_) for ent in doc.ents]\n", + " return entities" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "7f7ceef1", + "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", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idHeadlineDetailsSeverityCategoryRegionDatetimeYearlatlonmaritime_labelfound_portscontains_port_infoif_labeledMonthWeekHeadline_DetailsEntities
01.0Grasberg Mine- Grasberg mine workers extend st...Media sources indicate that workers at the Gra...ModerateMine Workers StrikeIndonesia28/5/17 17:082017.0-4.05608137.11302False['freeport']1.0False5.021.0Grasberg Mine- Grasberg mine workers extend st...[(Grasberg, GPE), (a fourth month, DATE), (Gra...
12.0Indonesia: Undersea internet cables damaged by...News sources are stating that recent typhoons ...MinorTravel WarningIndonesia4/9/17 14:302017.0NaNNaNFalse['hong kong']1.0False4.014.0Indonesia: Undersea internet cables damaged by...[(Hong Kong, GPE), (four, CARDINAL), (South-Ea...
23.0Shanghai port congestion impacts terminals in ...The persisting port congestion at Shanghai’s Y...MinorPort CongestionChina27/4/17 9:162017.029.52000121.33190True['ningbo', 'qingdao', 'shanghai']1.0False4.017.0Shanghai port congestion impacts terminals in ...[(Shanghai, GPE), (Yangshan, GPE), (China, GPE...
34.0UPDATE - Indonesia: Explosion at KP Terminal i...Updated local media sources from Jakarta indic...ExtremeBombing, Police OperationsIndonesia24/5/17 15:152017.0-6.22465106.86700True['jakarta']1.0False5.021.0UPDATE - Indonesia: Explosion at KP Terminal i...[(Jakarta, GPE), (at least one, CARDINAL)]
45.0UPDATE - Indonesia: Police confirm two explosi...According to local police in Jakarta, two expl...ExtremeBombing, Police OperationsIndonesia24/5/17 16:202017.0NaNNaNTrue['jakarta']1.0True5.021.0UPDATE - Indonesia: Police confirm two explosi...[(Jakarta, GPE), (two, CARDINAL), (the Termina...
56.0UPDATE - Indonesia: Severe winds damage infras...Severe winds have downed billboards and trees ...ModerateRoadway Closure / Disruption, Flooding, Severe...Indonesia19/4/17 9:102017.0-6.91264107.65700False['jakarta']1.0True4.016.0UPDATE - Indonesia: Severe winds damage infras...[(Bandung, GPE), (Wednesday, DATE), (afternoon...
67.01 dead in warehouse robbery in San Fernando, V...Local media sources indicated on October 29 th...MinorCargo/Warehouse TheftArgentina30/10/18 21:182018.0-34.45943-58.54336False['victoria']1.0False10.044.01 dead in warehouse robbery in San Fernando, V...[(October 29, DATE), (three, CARDINAL), (Mille...
78.0116 miles W of Changzhou - No casualties repor...Tropical Storm Rumbia had dissipated after tra...ModerateTropical Cyclone / StormChina15/8/18 3:072018.031.60000118.00000False['changzhou']1.0False8.033.0116 miles W of Changzhou - No casualties repor...[(Changzhou, GPE), (China, GPE), (dozens, CARD...
89.0134 miles SE of Hong Kong - TD Yutu has dissip...Tropical Depression Yutu, also referred to as ...ModerateStormChina21/10/18 15:052018.021.20000116.00000False['hong kong']1.0True10.042.0134 miles SE of Hong Kong - TD Yutu has dissip...[(Tropical Depression Yutu, EVENT), (Rosita, O...
910.014 miles NE of Jakarta - A magnitude 4.5 earth...A magnitude 4.5 earthquake was detected 14 mil...ModerateEarthquakeIndonesia24/9/18 18:332018.0-6.10000107.02000False['jakarta']1.0True9.039.014 miles NE of Jakarta - A magnitude 4.5 earth...[(4.5, CARDINAL), (14 miles, QUANTITY), (Jakar...
1011.017 miles SW of Batangas - A magnitude 5.5 eart...Multiple sources report that a magnitude 5.5 e...ModerateEarthquakePhilippines31/8/18 15:042018.013.55600120.90300False['batangas']1.0True8.035.017 miles SW of Batangas - A magnitude 5.5 eart...[(5.5, CARDINAL), (the Batangas Bay, LOC), (ap...
1112.0185 miles ENE of Norfolk - Michael is a Post-T...Post-Tropical Cyclone Michael is approximately...SevereTropical Cyclone / StormUnited States6/10/18 22:152018.038.00000-73.10000False['virginia']1.0False6.023.0185 miles ENE of Norfolk - Michael is a Post-T...[(approximately 185 miles, QUANTITY), (Norfolk...
1213.02 dead and 1 injured in Guangzhou shipyard acc...Industry sources indicate on September 11 that...MinorWorkplace AccidentChina11/9/18 18:302018.023.08090113.41206False['guangzhou']1.0False11.045.02 dead and 1 injured in Guangzhou shipyard acc...[(September 11, DATE), (2, CARDINAL), (1, CARD...
1314.02 miles E of Chesterfield - A tornado has touc...Government sources are reporting a tornado has...MinorTornadoUnited States17/9/18 19:552018.037.51000-77.61000False['virginia']1.0True9.038.02 miles E of Chesterfield - A tornado has touc...[(two miles, QUANTITY), (Chesterfield, GPE), (...
1415.02,500 offshore oil workers threaten to go on s...Media sources are informing on September 24 th...MinorIndustrial ActionUnited Kingdom24/9/18 15:492018.051.51968-0.12027False['london']1.0False9.039.02,500 offshore oil workers threaten to go on s...[(September 24, DATE), (Unite the Union, ORG),...
1516.023 miles ESE of Taichung City- A magnitude 4.5...A magnitude 4.5 earthquake was detected in cen...ModerateEarthquakeTaiwan17/8/18 10:402018.024.02000121.03000False['taichung']1.0False8.033.023 miles ESE of Taichung City- A magnitude 4.5...[(4.5, CARDINAL), (Taiwan, GPE), (approximatel...
1617.024 hour pier hold in effect at Port of DurbanIndustry sources indicate on August 31 that th...MinorPort CongestionSouth Africa31/8/18 18:072018.0-29.8687531.03305True['durban']1.0False8.035.024 hour pier hold in effect at Port of Durban ...[(August 31, DATE), (the Port of Durban, FAC),...
1718.025 miles SSE of Jackson Gordon continues to ...Tropical Depression Gordon continues to weaken...ModerateStormUnited States2/9/18 21:132018.032.00000-89.90000False['long beach']1.0True2.06.025 miles SSE of Jackson Gordon continues to ...[(Tropical Depression Gordon, ORG), (30 miles ...
1819.0270 kilograms of heroin discovered in containe...Local media sources indicated on November 8 th...ModeratePublic Safety / SecurityItaly14/11/18 22:242018.044.404208.89000True['genoa']1.0True11.046.0270 kilograms of heroin discovered in containe...[(November 8, DATE), (270 kilograms, QUANTITY)...
1920.033 miles SE of Valencia A magnitude 4.0 earthq...The European-Mediterranean Seismological Centr...ModerateEarthquakeSpain17/10/18 6:062018.039.230000.16000False['valencia']1.0True10.042.033 miles SE of Valencia A magnitude 4.0 earthq...[(The European-Mediterranean Seismological Cen...
\n", + "
" + ], + "text/plain": [ + " id Headline \\\n", + "0 1.0 Grasberg Mine- Grasberg mine workers extend st... \n", + "1 2.0 Indonesia: Undersea internet cables damaged by... \n", + "2 3.0 Shanghai port congestion impacts terminals in ... \n", + "3 4.0 UPDATE - Indonesia: Explosion at KP Terminal i... \n", + "4 5.0 UPDATE - Indonesia: Police confirm two explosi... \n", + "5 6.0 UPDATE - Indonesia: Severe winds damage infras... \n", + "6 7.0 1 dead in warehouse robbery in San Fernando, V... \n", + "7 8.0 116 miles W of Changzhou - No casualties repor... \n", + "8 9.0 134 miles SE of Hong Kong - TD Yutu has dissip... \n", + "9 10.0 14 miles NE of Jakarta - A magnitude 4.5 earth... \n", + "10 11.0 17 miles SW of Batangas - A magnitude 5.5 eart... \n", + "11 12.0 185 miles ENE of Norfolk - Michael is a Post-T... \n", + "12 13.0 2 dead and 1 injured in Guangzhou shipyard acc... \n", + "13 14.0 2 miles E of Chesterfield - A tornado has touc... \n", + "14 15.0 2,500 offshore oil workers threaten to go on s... \n", + "15 16.0 23 miles ESE of Taichung City- A magnitude 4.5... \n", + "16 17.0 24 hour pier hold in effect at Port of Durban \n", + "17 18.0 25 miles SSE of Jackson Gordon continues to ... \n", + "18 19.0 270 kilograms of heroin discovered in containe... \n", + "19 20.0 33 miles SE of Valencia A magnitude 4.0 earthq... \n", + "\n", + " Details Severity \\\n", + "0 Media sources indicate that workers at the Gra... Moderate \n", + "1 News sources are stating that recent typhoons ... Minor \n", + "2 The persisting port congestion at Shanghai’s Y... Minor \n", + "3 Updated local media sources from Jakarta indic... Extreme \n", + "4 According to local police in Jakarta, two expl... Extreme \n", + "5 Severe winds have downed billboards and trees ... Moderate \n", + "6 Local media sources indicated on October 29 th... Minor \n", + "7 Tropical Storm Rumbia had dissipated after tra... Moderate \n", + "8 Tropical Depression Yutu, also referred to as ... Moderate \n", + "9 A magnitude 4.5 earthquake was detected 14 mil... Moderate \n", + "10 Multiple sources report that a magnitude 5.5 e... Moderate \n", + "11 Post-Tropical Cyclone Michael is approximately... Severe \n", + "12 Industry sources indicate on September 11 that... Minor \n", + "13 Government sources are reporting a tornado has... Minor \n", + "14 Media sources are informing on September 24 th... Minor \n", + "15 A magnitude 4.5 earthquake was detected in cen... Moderate \n", + "16 Industry sources indicate on August 31 that th... Minor \n", + "17 Tropical Depression Gordon continues to weaken... Moderate \n", + "18 Local media sources indicated on November 8 th... Moderate \n", + "19 The European-Mediterranean Seismological Centr... Moderate \n", + "\n", + " Category Region \\\n", + "0 Mine Workers Strike Indonesia \n", + "1 Travel Warning Indonesia \n", + "2 Port Congestion China \n", + "3 Bombing, Police Operations Indonesia \n", + "4 Bombing, Police Operations Indonesia \n", + "5 Roadway Closure / Disruption, Flooding, Severe... Indonesia \n", + "6 Cargo/Warehouse Theft Argentina \n", + "7 Tropical Cyclone / Storm China \n", + "8 Storm China \n", + "9 Earthquake Indonesia \n", + "10 Earthquake Philippines \n", + "11 Tropical Cyclone / Storm United States \n", + "12 Workplace Accident China \n", + "13 Tornado United States \n", + "14 Industrial Action United Kingdom \n", + "15 Earthquake Taiwan \n", + "16 Port Congestion South Africa \n", + "17 Storm United States \n", + "18 Public Safety / Security Italy \n", + "19 Earthquake Spain \n", + "\n", + " Datetime Year lat lon maritime_label \\\n", + "0 28/5/17 17:08 2017.0 -4.05608 137.11302 False \n", + "1 4/9/17 14:30 2017.0 NaN NaN False \n", + "2 27/4/17 9:16 2017.0 29.52000 121.33190 True \n", + "3 24/5/17 15:15 2017.0 -6.22465 106.86700 True \n", + "4 24/5/17 16:20 2017.0 NaN NaN True \n", + "5 19/4/17 9:10 2017.0 -6.91264 107.65700 False \n", + "6 30/10/18 21:18 2018.0 -34.45943 -58.54336 False \n", + "7 15/8/18 3:07 2018.0 31.60000 118.00000 False \n", + "8 21/10/18 15:05 2018.0 21.20000 116.00000 False \n", + "9 24/9/18 18:33 2018.0 -6.10000 107.02000 False \n", + "10 31/8/18 15:04 2018.0 13.55600 120.90300 False \n", + "11 6/10/18 22:15 2018.0 38.00000 -73.10000 False \n", + "12 11/9/18 18:30 2018.0 23.08090 113.41206 False \n", + "13 17/9/18 19:55 2018.0 37.51000 -77.61000 False \n", + "14 24/9/18 15:49 2018.0 51.51968 -0.12027 False \n", + "15 17/8/18 10:40 2018.0 24.02000 121.03000 False \n", + "16 31/8/18 18:07 2018.0 -29.86875 31.03305 True \n", + "17 2/9/18 21:13 2018.0 32.00000 -89.90000 False \n", + "18 14/11/18 22:24 2018.0 44.40420 8.89000 True \n", + "19 17/10/18 6:06 2018.0 39.23000 0.16000 False \n", + "\n", + " found_ports contains_port_info if_labeled Month \\\n", + "0 ['freeport'] 1.0 False 5.0 \n", + "1 ['hong kong'] 1.0 False 4.0 \n", + "2 ['ningbo', 'qingdao', 'shanghai'] 1.0 False 4.0 \n", + "3 ['jakarta'] 1.0 False 5.0 \n", + "4 ['jakarta'] 1.0 True 5.0 \n", + "5 ['jakarta'] 1.0 True 4.0 \n", + "6 ['victoria'] 1.0 False 10.0 \n", + "7 ['changzhou'] 1.0 False 8.0 \n", + "8 ['hong kong'] 1.0 True 10.0 \n", + "9 ['jakarta'] 1.0 True 9.0 \n", + "10 ['batangas'] 1.0 True 8.0 \n", + "11 ['virginia'] 1.0 False 6.0 \n", + "12 ['guangzhou'] 1.0 False 11.0 \n", + "13 ['virginia'] 1.0 True 9.0 \n", + "14 ['london'] 1.0 False 9.0 \n", + "15 ['taichung'] 1.0 False 8.0 \n", + "16 ['durban'] 1.0 False 8.0 \n", + "17 ['long beach'] 1.0 True 2.0 \n", + "18 ['genoa'] 1.0 True 11.0 \n", + "19 ['valencia'] 1.0 True 10.0 \n", + "\n", + " Week Headline_Details \\\n", + "0 21.0 Grasberg Mine- Grasberg mine workers extend st... \n", + "1 14.0 Indonesia: Undersea internet cables damaged by... \n", + "2 17.0 Shanghai port congestion impacts terminals in ... \n", + "3 21.0 UPDATE - Indonesia: Explosion at KP Terminal i... \n", + "4 21.0 UPDATE - Indonesia: Police confirm two explosi... \n", + "5 16.0 UPDATE - Indonesia: Severe winds damage infras... \n", + "6 44.0 1 dead in warehouse robbery in San Fernando, V... \n", + "7 33.0 116 miles W of Changzhou - No casualties repor... \n", + "8 42.0 134 miles SE of Hong Kong - TD Yutu has dissip... \n", + "9 39.0 14 miles NE of Jakarta - A magnitude 4.5 earth... \n", + "10 35.0 17 miles SW of Batangas - A magnitude 5.5 eart... \n", + "11 23.0 185 miles ENE of Norfolk - Michael is a Post-T... \n", + "12 45.0 2 dead and 1 injured in Guangzhou shipyard acc... \n", + "13 38.0 2 miles E of Chesterfield - A tornado has touc... \n", + "14 39.0 2,500 offshore oil workers threaten to go on s... \n", + "15 33.0 23 miles ESE of Taichung City- A magnitude 4.5... \n", + "16 35.0 24 hour pier hold in effect at Port of Durban ... \n", + "17 6.0 25 miles SSE of Jackson Gordon continues to ... \n", + "18 46.0 270 kilograms of heroin discovered in containe... \n", + "19 42.0 33 miles SE of Valencia A magnitude 4.0 earthq... \n", + "\n", + " Entities \n", + "0 [(Grasberg, GPE), (a fourth month, DATE), (Gra... \n", + "1 [(Hong Kong, GPE), (four, CARDINAL), (South-Ea... \n", + "2 [(Shanghai, GPE), (Yangshan, GPE), (China, GPE... \n", + "3 [(Jakarta, GPE), (at least one, CARDINAL)] \n", + "4 [(Jakarta, GPE), (two, CARDINAL), (the Termina... \n", + "5 [(Bandung, GPE), (Wednesday, DATE), (afternoon... \n", + "6 [(October 29, DATE), (three, CARDINAL), (Mille... \n", + "7 [(Changzhou, GPE), (China, GPE), (dozens, CARD... \n", + "8 [(Tropical Depression Yutu, EVENT), (Rosita, O... \n", + "9 [(4.5, CARDINAL), (14 miles, QUANTITY), (Jakar... \n", + "10 [(5.5, CARDINAL), (the Batangas Bay, LOC), (ap... \n", + "11 [(approximately 185 miles, QUANTITY), (Norfolk... \n", + "12 [(September 11, DATE), (2, CARDINAL), (1, CARD... \n", + "13 [(two miles, QUANTITY), (Chesterfield, GPE), (... \n", + "14 [(September 24, DATE), (Unite the Union, ORG),... \n", + "15 [(4.5, CARDINAL), (Taiwan, GPE), (approximatel... \n", + "16 [(August 31, DATE), (the Port of Durban, FAC),... \n", + "17 [(Tropical Depression Gordon, ORG), (30 miles ... \n", + "18 [(November 8, DATE), (270 kilograms, QUANTITY)... \n", + "19 [(The European-Mediterranean Seismological Cen... " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Entities'] = df[\"Details\"].apply(extract_entities)\n", + "\n", + "# Print the updated DataFramedf)\n", + "df.head(20)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "b36238f6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Grasberg', 'GPE'),\n", + " ('a fourth month', 'DATE'),\n", + " ('Grasberg Mine', 'ORG'),\n", + " ('Tembagapura', 'GPE'),\n", + " ('at least 6,000', 'CARDINAL'),\n", + " ('Around 25,000', 'CARDINAL'),\n", + " ('around 3,200', 'CARDINAL'),\n", + " ('The Grasberg Mine', 'ORG'),\n", + " ('Freeport McMoRan Inc', 'ORG'),\n", + " ('third', 'ORDINAL'),\n", + " ('half', 'CARDINAL'),\n", + " ('Freeport McMoRan', 'PERSON'),\n", + " ('more than five days', 'DATE')]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "entities= df[\"Entities\"]\n", + "entities[0]" + ] + }, + { + "cell_type": "markdown", + "id": "db4d34bc", + "metadata": {}, + "source": [ + "## Visualize via Word cloud" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "f2add4dd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Grasberg', 'a fourth month', 'Grasberg Mine', 'Tembagapura', 'at least 6,000', 'Around 25,000', 'around 3,200', 'The Grasberg Mine', 'Freeport McMoRan Inc', 'third', 'half', 'Freeport McMoRan', 'more than five days', 'Hong Kong', 'four', 'South-East Asia', 'the United States', 'up to six weeks', 'ASE', 'Asia Submarine', 'Telekom Malaysia', 'Singapore', 'Starhub', 'Japan', 'NTT', 'Philippines', 'peak hours', 'Shanghai', 'Yangshan', 'China', 'Qingdao', 'Ningbo', 'Shanghai', 'the coming months', 'Jakarta', 'at least one', 'Jakarta', 'two', 'the Terminal Kampung Melayu', 'Wednesday night', 'at least three', 'Bandung', 'Wednesday', 'afternoon', 'Jalan', 'Jakarta', 'Bandung', 'October 29', 'three', 'Miller', 'Edison', '9:50 PM', 'October 27', 'Changzhou', 'China', 'dozens', 'Tropical Depression Yutu', 'Rosita', 'Philippines', 'the South China Sea', 'China', 'Philippines', 'Yutu', 'approximately 40,000', 'Luzon', 'one', 'Natonin', 'dozens', 'at least 11', 'the Northern Mariana Islands', 'one', 'at least 133', 'At least 12', '500', 'over 1000', '4.5', '14 miles', 'Jakarta', 'Indonesia', '5.5', 'the Batangas Bay', 'approximately 17 miles', 'Batangas', 'Philippines', 'approximately 185 miles', 'Norfolk', 'Virginia', '29 miles per hour', 'Michael', '65 miles per hour', '75 miles per hour', 'up to 275 miles', 'Category 4', 'Florida', 'Florida', 'Michael', 'the United States', 'the Atlantic Ocean', 'At least 13', 'Central America', '11', 'the United States', 'four', 'Florida', 'Georgia', 'one', 'North Carolina', 'five', 'Virginia', 'Florida', 'Rick Scott', 'Florida', '35', 'Florida Panhandle', 'Trump', 'Florida', 'Nathan Deal', '108', 'Georgia', 'Kay Ivey', 'Alabama', 'Ray Cooper', 'North Carolina', 'Ralph Northam', 'Thursday', 'Virginia', 'Florida Panhandle', '2-14 feet', 'four to eight inches', 'four to seven inches', 'South Carolina', 'North Carolina', 'Virginia', 'North Carolina', 'Virginia', 'nine inches', 'Michael', 'Michael Tab', 'September 11', '2', '1', 'CSSC', 'Guangzhou', 'Huangpu', 'PLA Navy', 'Guangzhou', 'Huangpu', 'China', 'two miles', 'Chesterfield', 'Central Virginia', 'September 24', 'Unite the Union', 'London', 'United Kingdom', 'September 28', 'November 2', 'the Offshore Contractors Association', '4 percent', '106', 'North Sea', '4.5', 'Taiwan', 'approximately 23 miles', 'Taichung City', 'August 31', 'the Port of Durban', 'Pier 1', 'Bayhead Road', '6AM', 'September 1', 'Durban', 'Tropical Depression Gordon', '30 miles per hour', 'Gordon', '14 miles per hour', 'Midwest', 'one', 'West Pensacola', 'Florida', 'Voluntary', 'Port Fourchon', 'LA', 'Grand Isle', 'LA', 'New Orleans', 'Venetian Isles', 'Lake Catherine', 'Irish', 'Mississippi', 'Gulfport', 'Biloxi', 'Long Beach', 'Louisiana', 'Mississippi', 'Alabama', 'Gordon', 'November 8', '270 kilograms', 'Iran', 'the Port of Genoa by', 'Italian', 'Two', 'Switzerland', 'France', 'Belgium', 'Netherlands', 'The European-Mediterranean Seismological Centre', '4.0', 'approximately 33 miles', 'Valencia', 'the Mediterranean Sea', 'Tropical Depression Florence', 'ten miles per hour', 'approximately 40 miles', 'Columbia', 'South Carolina', '35 miles per hour', 'Northeast', 'the next couple of days', 'Over 30 inches', 'Swansboro', 'North Carolina', 'more than 25 inches', 'Newport', 'North Carolina', 'North Carolina', 'South Carolina', 'Southeast', 'Mid-Atlantic', 'South Carolina', 'North Carolina', 'Virginia', 'North Carolina', 'Approximately one million', 'North Carolina', 'approximately 400', 'New Bern', 'thousands', 'NC', 'the past couple of days', 'at least 14', 'North Carolina', 'Henry McMaster', 'South Carolina', 'Ralph Northam', 'Virginia', 'Larry Hogan', 'Maryland', 'Georgia', 'September 25', '455 kilograms', 'Hamburg', 'the Port of Santos', 'Guaruja', 'Danish', 'Cap San Raphael', 'the Federal Police', 'Receita Federal', 'Hamburg', 'October', 'November 7', '5', 'Entreposage havrais', 'Le Havre', 'France', 'The European-Mediterranean Seismological Centre', '3.8', 'around six miles', 'Guayaquil', 'Ecuador', 'The European-Mediterranean Seismological Centre', '5.2', 'approximately six miles', 'San Antonio', 'Chile', 'October 18', '6', 'Santos', 'the evening', 'October 15', 'Sao Bernardo', 'Campo', '35,000', 'EUR', '8232.62', 'USD 9432.15', '4', '6', '2', 'the Port of Santos', 'ABC', '6', 'a Tropical Depression', 'Taiwan', 'August 24', 'Container', 'Jin Hua', '05:00', 'Kaohsiung', 'Tainan city', '2', 'Dragon Aria', '05:00', 'Kaohsiung', 'Tainan', 'Kaohsiung Port’s', 'Tai Cang Hu', 'An Li', '669', 'Shun Hong', 'Chang Long 68', 'the same morning', 'The European-Mediterranean Seismological Centre', '5.6', 'approximately 83 miles', 'Caracas', 'Venezuela', 'Thursday', 'morning', 'Vargas', 'Falc n', 'Aragua', 'Carabobo', 'Gran Caracas', 'Valencia', 'San Diego', 'Carabobo', 'Mangkhut', 'the next 15 hours', 'Guangdong Province', 'Philippines', 'Macau', 'Hong Kong', 'Hong Kong', 'Monday', 'Hong Kong', 'Tsim Sha Tsui', 'Sai Kung', 'Chai Wan', 'The Ting Kau Bridge', 'Macau', 'at least 300', 'Hong Kong', 'at least 15', 'Macau', 'at least two', 'Guangdong', 'The Hong Kong Observatory', 'Storm Signal', 'over 2.45 million', 'Guangdong', 'Hong Kong Airport', 'HKG', 'Macau International Airport', 'MFM', 'Monday', 'Guangzhou', 'Baiyun International Airport', 'Guangdong', 'Guangxi', 'Tropical Storm Barijat', 'Monday', 'MTR', 'Hong Kong', 'Philippines', 'Luzon', 'More than 151,000', 'At least 59', 'Tuguegarao Airport', 'TUG', 'The United States', '5.7', 'the Philippine Sea', 'approximately 91 miles', 'Taipei', 'Taiwan', '6.0', 'approximately 21 miles', 'Tropical Depression Tara', 'the Pacific Ocean', 'about 97 miles', 'Manzanillo', 'Colima', 'Mexico', 'The National Weather Service', 'Tropical Storm Warning', 'Mexico', 'Cabo Corrientes', 'Manzanillo', 'Punta', 'San Telmo', 'Manzanillo', 'Five to ten inches', 'Nayarit', 'Colima', 'Jalisco', 'Tuesday', 'early Wednesday', 'Up to 15 inches', 'Jalisco', 'Colima', 'November 23', 'the Wutong Bridge', 'Yantian', 'November 24', '00:00 to November 26', 'December 21', 'the Avenida Perimetral', 'the Port of Santos', 'Codesp', 'the Port of Santos', 'two', 'Langeberg', 'one', 'Langeberg', 'Terminal', 'the coming hours', 'SA Power Networks', 'thousands', 'Adelaide', 'Boeing Company', 'North Charleston', 'Sunday night', 'Hurricane Florence', 'December 28', 'the Port of Le Havre', 'Act VI', 'Yellow Vest', 'the Port of Le Havre', 'Sunday, November 18', 'American Airlines', 'the Association of Professional Flight Attendants', '15', 'the United States', '11:00 AM to 1:30 PM', '25', 'American Airlines', 'Logan International Airport', 'Charlotte Douglas International Airport', 'CLT', 'Ronald Reagan', 'Washington National Airport', 'Dallas', 'DFW', 'Los Angeles International Airport', 'LAX', 'Newark Liberty International Airport', 'EWR', 'John F Kennedy', 'International Airport', 'JFK', 'Miami International Airport', 'MIA', 'O Hare International Airport', 'ORD', 'Pittsburgh International Airport', 'ORD', 'Philadelphia International Airport', 'PHL', 'Phoenix Sky Harbor International Airport', 'PHX', 'Raleigh-Durham International Airport', 'RDU', 'San Francisco International Airport', 'SFO', 'St. Louis Lambert International Airport', 'STL', 'these hours', 'American Airlines', 'This week', 'the Three Gorges Dam Lock System', 'the Chinese Ministry of Transport', 'the Three Gorges Ship Lock', '2018', 'February 19', '08:00 AM', '33 days', 'Gezhou Dam', 'the Gezhou Dam', '2018', 'February 26', '08:00 AM', '20 days', '15 days', 'the Three Gorges’ North Ship', '2017', 'Yangtze River', 'Shanghai', 'December 2017', 'COSCO', 'at least one week', 'the Three Gorges Dam', 'Shanghai', '10 days', 'Chongqing', 'Qinzhou', 'India', 'Southeast Asia', 'South China', 'the period of', 'September 16 to 18', 'Typhoon Mangkhut', 'Hong Kong', 'Macao', 'Guangdong', 'Hainan', 'June 27', 'Union Pacific Railroad', 'Ports', 'Los Angeles', 'Long Beach', 'Union Pacific', 'ONE', 'mid-August', 'mid-October', 'Union Pacific', 'Dunkirk', 'the India Pakistan Express', 'Felixstowe.', 'Antwerp', 'CSAV Tyndall', '217', 'Southampton', 'September 15, 2018', 'Monday', 'APM Terminals', 'India', 'Jawaharlal Nehru Port', 'Maharashtra State', 'September', 'February', '500', 'APM Terminals', 'India', 'Argentine', '48-hour', '8-9 October', 'the Province of Buenos Aires', '19 percent', 'Monday 8 October', 'Avenida Callao 237', 'Buenos Aires', 'this day', 'Wednesday', 'the Royal Marines', 'the Thames River', 'London', 'King Willem-Alexander', 'Queen Maxima', 'Netherlands', 'three', 'ten minutes', 'the HNLMS Zeeland', 'Belfast', 'highlight 45 years', 'two', 'UK', 'Royal Marines', 'Dutch', 'Norway', 'the Defense Arctic Strategy', 'British', 'Defense', 'Gavin Williamson', 'Wednesday', '01:12N-103:33E', 'ten', 'VTIS Singapore', 'six', 'three', 'Singapore', 'VTIS', '22:06.7N–091:44.7E', 'four', 'the day', 'the Chittagong Port Control', 'the Attica Region', 'Lavrio', 'Piraeus', 'Rafina', 'Central Pier', 'Docklands', 'Melbourne', 'Friday', 'evening', 'British', 'Nigel Farage', 'between 19:00 and 22:00', 'Aurizon', 'Queensland', '21 December', 'Moura', '24 hours', 'noon', 'Aurizon', '24 hours', 'noon', '22 December', 'Brisbane', 'noon', '24 December', '24 hours', 'the Birkenhead Point Marina', 'Sydney', 'Monday', 'morning', 'Brisbane', '48-hour', '04:00', '6 December', '8 December', 'Transdev', 'CityCat', 'CityFerry', 'the Brisbane City Council', 'Over 130', 'Victoria State', '24-hour', 'Thursday', '16 August', 'More than 1,000', 'Melbourne', 'Geelong', 'Ballarat', 'Australian', 'Sydney', 'the Blue Mountains', 'today', '22 November', '2009', 'the Metropolitan Fire Brigade', 'Hazardous Materials', 'West Melbourne', 'this afternoon', 'Mackenzie Road', 'Coburg North', 'Melbourne', 'Sydney Road', 'Sydney', 'Wednesday', 'evening', 'Kellyville', 'Box Hill', 'Rouse Hill', 'the M1 Pacific Motorway', 'early this morning', 'Berowra', 'the Upper North Shore', 'Sydney', 'Pacific Highway', 'the Pacific Highway', 'Sydney Harbour', 'earlier this morning', 'Manly', 'Quay', 'Quay', 'Perth Central Area Transit', 'CAT', '11 October', \"the Transport Workers' Union\", 'Transdev', 'between 06:00 and 10:00', 'Fremantle', 'Joondalup', 'Rockingha', 'Two', 'three', 'Manly Road', 'Balgowlah', 'Sydney', 'Saturday', 'evening', 'overnight', 'Toll Carriers', 'Battle Boulevard', 'Sydney', 'Thursday', 'Friday', 'morning', '100mm', 'Sydney', 'North Richmond', 'Kilcare Heights', 'Ingleburn', 'The Bureau of Meteorology', 'New South Wales', 'Tuesday', 'Metropolitan', 'Illawarra', 'Mid North Coast', 'Hunter', 'Central Tablelands Forecast', 'Wednesday', 'Novara', 'Newcastle', 'Sydney', 'Wollongong', 'Gosford', 'Wednesday', 'afternoon', 'the day', '60', '70', 'km/h', 'the Sydney Harbour Tunnel', 'the New South Wales Police Force', 'the Sydney Harbour Tunnel', 'this afternoon', 'Canal Road at Burrows Road', 'the A36 Highway', 'St Peters', 'Sydney', 'two', 'three', 'Canal Road', 'the A36 Highway', 'Sydney Park Road', 'Canal Road', 'the A36 Highway', 'Bangladesh', 'India', 'Chittagong', 'Mongla', 'India', 'a five year', 'another five years', 'August 16', 'US', 'the Port of New York', 'New Jersey', 'Port of Los Angeles', 'China', '33', '20', '40-foot', 'the Port of New York', 'New Jersey', 'the Port of Los Angeles', 'October 7th', 'National Liberation Army', 'two', 'Cesar', 'Two days later', 'Colombian', 'Plan Pistola', 'last year', 'the Colombian Army', 'Colombia', 'Sunday, October 7th', 'two', 'San Alberto', 'La Mata', 'Cesar', 'two', 'Iv n Duque', 'Bogot', 'Tuesday, October 9th', 'Colombian', 'Iv n Calixto', 'the Magdalena Medio Police', 'Antioquia', 'Plan Pistola', 'mid-2017', 'Calixto', 'Bol var Department', 'Antioquia', 'The Colombian Army', 'Bogot', 'August 1st', 'Duque', 'August 7th', 'Duque', 'one', 'early September', 'three', 'one', 'two', 'the previous month', 'October 10th', 'the northeastern department of Arauca', 'March of this year', 'Plan Pistola', 'last year', 'ten', 'at least 11', 'over 30', 'Cartagena', 'Bogot', 'Medell', 'ELN', 'Plan Pistola', 'Colombian', 'Bogot', 'Duque', 'Colombia', 'Bol', 'ELN', 'Norte de Santander', 'Cauca', 'Choc', 'Nari o. Travelers', 'ELN', 'one', 'Bogot', 'February of 2017', 'Volvo', 'Volvo Plant', 'Ridgeville', 'South Carolina', 'Hurricane Florence', 'Thursday', 'evening', 'early Friday', 'Charleston', 'Norfolk', 'VA', 'over one million', 'Volvo', 'S60', 'Volvo', 'South Carolina', 'about two weeks ago', '1,000', 'October 30', 'Asotraport', 'Valencia', 'V-30', 'the Port of Valencia', 'the Port of Ningbo', 'around 1 to 1.5 days', '0.5', '1 day', 'December 15', 'December 12', 'the Port of Busan', 'about 0.5 to', 'Busan New Container Terminal', 'about 90 percent', 'December 17', 'the Port of Hong Kong', 'about 0.5 day', 'the Port of Shanghai', 'around 0.5 day', 'December 17', 'the Port of Yantian', 'about 0.5 day', 'the Port of Ningbo', 'about 0.5 - 1 day', 'the evening', 'December 26 to next day', 'evening', 'December 28 to the next day', 'evening', 'the Port of Shanghai', 'about 0.5 - 1 day', 'the evening', 'December 26', 'the evening of', 'December 28', 'Dammam', 'Abdul Aziz Port', '11:50', 'October 29', 'December 14', 'the Port of Tanger Med', '24-hours', 'December 10', 'the Port of Hamburg', 'December 9', 'December 11', 'the Port of Colombo', 'recent days', '24-hours', 'Sri Lanka’s Department of Meteorology', 'Indian', 'Kanyakumari', 'Sri Lankan sea', 'the Adaman Sea', 'Bay of Bengal', '48-hours', 'November 2', 'the day', 'evening', 'Brisbane', 'Melbourne Patrick Terminals', 'Malta', 'December 17', 'the Port of Sydney and Port of Melbourne', 'today', 'December 11', 'Port of Colombo', 'December 11', 'India', 'Ports of Chennai', 'Tuticorin', 'Kattupali', 'the coming days', 'November 8', 'Malta Freeport', 'November 8', 'the Port of Barcelona', 'August 22', 'Bahamian', 'Front Hakata', 'August 20', 'Tokyo Bay', 'Zhoushan-Ningbo', '4-6', 'Typhoon Soulik', 'the East China Sea', 'Typhoon Maron', 'Japan', 'Tokyo', 'the Front Hakata', 'the Medical School of La Paz', 'Ballivian', 'Calle Colon', '24-hour', 'Thursday, November 29', 'Universal Health Insurance', '48-hour', 'Monday, December 3', 'Thursday, October 25', 'India', 'Bangladesh', 'Chattogram Port', 'Bangladesh', 'India', '19th', 'the standing committee meeting', 'the Protocol on Inland Water Transit and Trade in New Delhi', 'two', 'The Bangladesh Nationalist Party', 'two-day', '8 and 12 September', 'Khaleda Zia', 'Dhaka', 'Chittagong', '11:00-12:00', '10:00', '12 September', 'Barcelona', 'The Catalan Government', '95 percent', 'metro', 'Batangas Port', 'Typhoon Yutu', 'Rosita', 'Around 1,300', 'Tuesday', 'evening', 'Tuesday, October 2', 'Belgium', 'CSC', 'FGTB', 'CGSLB', 'FGTB', '24-hour', 'Liege', 'Tuesday', 'morning', 'Brussels', 'Antwerp', 'Ghent', 'La Louviere', 'Namur', 'TEC', 'up to 63 percent', 'Brussels', 'late afternoon', 'Belgium', 'CSC', 'last week', 'Wallonia', 'Monday, November 19', 'Brussels', 'Antwerp', 'Friday, November 9', '12', 'Wallonia', 'Fleurus', 'Thursday, November 8', 'Wednesday, November 7', 'Charleroi', 'Mont-Saint-Guibert', 'Boussu', 'Andenne, Jumet, Anderlecht', 'Awans', 'Waremme', 'Vis', 'Antwerp', 'Tuesday', 'Scheldt', 'Breskens-Vlissingen', 'Antwerp', 'Flemish', 'Today', '32', 'Zeebrugge', 'Belson Rd', 'Borgard Rd', 'London', 'Slade Green', 'November 20', 'the Port of Vancouver', 'Centerm', '1-3 days', '6 days', 'the beginning of the month', 'last week’s', 'the Port of Gioia Tauro', 'Italy', '2 days', 'October 19', 'the Port of Los Angeles', 'the Port of Los Angeles', 'the week', 'the Jawaharlal Nehru Port', 'September 14', '18102E.', 'October 30', 'the Port of Chittagong', 'October 29', 'the Chittagong Container Terminal', 'CCT', '4-5 days', 'the New Mooring Container Terminal', 'NCT', '6-7 Days', 'the General Cargo Berths', '6-7 days', 'yesterday October 1', 'the Port of Charleston', 'South Carolina', 'Monday, October 1 to Wednesday October 3', 'two', 'the Port of Penang', 'early May', '12-24 hours', 'Silver Star', 'Hurricane Michael', 'Taiwan', 'Taiwan', 'China', 'Fuzhou', 'Taiwan', 'Matsu', 'Penghu', 'Little Liuqiu', 'Orchid', 'Green', 'the East Coast Main Line', 'York', 'CrossCountry', 'London North Eastern Railway', '4:30 PM', 'one', 'Sydney Harbour', 'Birkenhead Point', 'October 17', 'Pier 2 Container Terminal', 'the Port of Durban', '06:00', 'Transdev', '24-hour', 'Brisbane', '4:00 AM', 'Thursday, December 20', '4:00 AM', 'Friday', 'December 21', 'The Maritime Union of Australia', 'At least 130', 'Transdev', 'Brisbane', '48-hour', 'the Maritime Union of Australia', 'more than 130', 'Friday, November 7', 'Australia', 'Brisbane', 'second', 'this month', 'Thursday', '24 hours', '4am', 'Thursday', '4am', 'Friday', 'Transdev', 'Brisbane City Council', 'Thursday', 'two-day', 'earlier this month', 'September 20', 'the Port of Santos', 'Brazil', 'between the 61st and', '64th', 'Anchieta', '6PM', 'September 20', 'the Port of Santos', 'Saudi Arabia', 'Jamal Khashoggi', 'Riyadh', 'Mohammed bin Salman', 'Istanbul', 'Turkey', 'last week', 'recent days', 'MbS', 'the Virgin Group', 'Richard Branson', 'two', 'Saudi', 'US', '$1 billion', 'Riyadh', 'Ernest Moniz', 'Alphabet', 'Energy Futures Initiative', 'Red Sea', 'NEOM', 'the New York Times', 'Economist', 'Uber', 'Viacom', 'AOL', 'Riyadh', 'October 23', 'Saudi', 'Turkish', 'Khashoggi', 'Saudi', 'Istanbul', 'Riyadh', 'Khashoggi', 'Saudi Arabia', 'MbS', 'Saudi', 'Vision 2030', 'Saudi Arabia', 'Riyadh', 'US', 'Donald Trump', 'Saudi Arabia', 'Khashoggi', 'Tuesday', 'California', 'The Camp Fire', 'Butte County', '42', 'the Camp Fire', 'more than 200', '6,522', '85', '260', '75', '32', '772', 'Approximately 15,500', 'the Camp Fire', 'Southern California', 'Woolsey Fire', '435', 'at least 24', '57,000', 'Two', 'the Woolsey Fire', 'The Hill Fire', 'two', 'two', 'The Camp Fire', 'Woolsey', 'Hill', 'Camp', 'Woolsey', 'Red Flag Warnings', 'Tuesday', 'San Diego', 'Orange', 'San Bernardino', 'Riverside', 'Ventura', 'Los Angeles', 'Wednesday', 'Thursday', 'Northern and Southern California', 'next week', 'Northern California', 'Southern California', 'November 1', '150', 'Canada Post', 'Toronto', 'Vancover', 'Montreal', 'Canada Post', 'daily', 'several days', 'Canada Post', 'the Vancouver Island Conference Center', 'Nanaimo', 'today', '22 August', '101 Gordon Street', 'last week', 'Burnaby', 'Terminal Avenue', 'Coal Harbour', 'Vancouver', 'Friday', '14 December', 'Portal Park', 'the Shaw Tower', 'Canadian', 'British Columbia', 'Thursday', '100', 'Environment Canada', 'Vancouver', 'Vancouver Island', 'Abbotsford', 'Chilliwack', 'Vancouver', 'Vancouver Island', '19:00', 'almost 280,000', 'BC Hydro', 'the Lower Mainland', 'Sunshine Coast', 'Ottawa', 'Montreal', 'Quebec City', '21 September', 'at least 114,025', 'Wind Warning', '90 kilometers per hour', 'German', 'October 1', 'Bremerhaven', 'Germany', 'the afternoon of', 'November 1', 'USA', 'Bremerhaven Germany', 'the afternoon', 'two', 'third', 'waterline', 'One', 'USA', 'HONOR', 'Bremerhaven', 'September 4', 'afternoon September 6', 'August 19', 'Antigua', 'Barbuda', 'Darwin', '2:20PM', 'August 18', 'Little Belt', 'Kolding', 'Demark', 'Kiel', 'Darwin', 'Marmalaita', 'St. Catherines Point', 'the Isle of Wight', '50 21', '000', '56.217', 'Dec 2, 2018', '8206,7 tonnes', '13', 'St. Petersburg', 'Dakar', 'the English', 'December 4', 'ETA', 'Dakar', 'Dec 10', 'Indonesian', 'December 5', 'three', 'five', 'SV', 'Lay Vessel', '108', 'Setoko Village', 'Bulang', 'Batam City', 'October 11', 'Singapore Strait', 'Singapore', 'Malacca Strait', 'Amanda', 'the afternoon', 'December 25', 'Tanjung Sepang', 'Malaysia', 'Singapore Strait', 'Three', '6', 'Montreal', 'Lanoraie', 'Quebec', 'December 10, 2018', '4 p.m.', 'Sint Eustatius', 'ETA', 'Dec 17', 'December 15', '8', 'New Jersey', 'multi-million', 'USD 4 million', '3,54 million', 'Kearny', 'the Port of Newark', '18-month', 'Operation Equinox', 'Linden', 'North Bergen', 'Clifton', 'October 29', '2000', 'Peterbilt', '379', 'Avenhill', 'NJ', 'the evening', 'October 19', 'New Jersey', '1XP5DB9X2YN517240', 'the Rahway River', 'New Jersey', 'November 30', 'the Ekurhuleni Central Crime Intelligence Unit', '4', 'November 21', 'Main Reef Road and Ulysses Street', 'Cleveland', 'Durban', 'Johannesburg', 'Randfontein', '5 million', '309018.21', 'USD 352673.95', 'Randfontein', 'December 14', 'the Industrial Zone of the Port of Manzanillo on Calle Algodones', 'dawn', 'December 14', 'the Port of Manzanillo', 'December 19', '1 ton', 'Cubatao', 'December 19', 'The Port of Santos', 'Brazil', 'August 24', 'Umgeni Road in Durban', 'August 23', 'three', 'December 13', 'the Port of San Antonio', 'PCE', 'STI', 'Tamaulipas', 'Mexico', 'yesterday', 'August 19, 2018', 'the Victoria-Matamoros', 'the Francisco Villa Ejido', 'San Fernando', 'Tamaulipas', 'Matamoros', 'U.S.-Mexico', 'Ciudad Victoria', '202', '2019', 'Kenworth', 'COSCO Philippines', '1836', 'IMX', 'Nhava Sheva', 'Port Mundra', 'Port of Karachi', 'Pakistan', 'September 11', 'Rotterdam', 'Algeciras', '17', 'December 12, 2018', '1.30 p.m.', '4.500 net tonnes', '3.30 p.m.', 'ETA', 'Dec 16', 'MV Monte Pascoal', '089SN', 'Rio de Janeiro', 'Salvador', 'Rio de Janeiro', 'Port of Santos', 'September 5', 'MV Monte Pascoal', '089SN', 'Rio de Janeiro', 'Salvador', 'Rio de Janeiro', 'Port of Santos', 'September 5', 'Star Liberty', 'Port of San Jose de Buenavista,', 'Antique', 'Panay Island', 'September 3', 'Cebu', '22', 'Port of Matsuyama to Port of Mizushima', 'September 9', 'August 17', 'Antigua', 'Barbuda', 'the Humber Estuary', 'East Yorkshire', '1:37 PM', 'August 15', 'Rotterdam', '8PM that day', 'NYK THESEUS', 'Port of Pipavav', 'India', 'September 12', 'Port of Jawaharlal', 'September 14', 'MV Anl Warragul', '597N', 'MV Anl Walwa', 'Port of Tauranga', 'New Zealand', 'August 18', 'Anl Warragul', 'Sydney', 'Melbourne', 'Tauranga', 'Australia', 'Tauranga', 'ANL', '597', 'Port of Oakland', 'California', 'September 5', 'MV Cap Blanche', '114S/N', 'MV Botany Bay 114 S/N. Cap Blanche', 'first', 'the Port of Melbourne', 'September 14', 'Vessel Botany Bay', 'Melbourne', 'September 15', 'the Doctors of Catalonia', 'MC', 'the Catalan Health Institute', 'Catalonia', 'Monday, November 26', 'Catalan', 'Barcelona', 'Wednesday', 'Taiwan', 'Kaohsiung', 'at least seven', '116', 'at least 14', 'Kaohsiung Harbor', 'Changhua County', 'Yunlin County', 'Wuhu District', 'Pingtung County', 'Chiayi County', 'Kaohsiung', 'Tainan', 'Tainan', 'the Anping Canal', '942', 'Over 6,000', 'At least 157', 'Taiwan', 'Tennessee', 'Hwy 11', 'Pulaski', 'Estill Springs', 'I-24', 'Manchester', 'Maury County', 'Thompson s Station', 'Auburntown', 'Woodbury Hwy', 'Liberty', 'Christiana', 'Pikeville', 'Dunlap', 'Christiana', 'Rutherford County', 'one', 'Midland Rd', 'At least two', 'Christiana', 'Two', 'Estill Springs', 'Two', 'Charleston', 'Benton', '5.4pt', 'CenturyLink', 'Thursday, December 27', '911', 'the United States', 'eastern United States', 'Denver', 'Portland', 'Seattle', 'Los Angeles', 'Salt Lake City', 'Albuquerque', 'Boise', 'Chicago', 'Phoenix', 'Denver', 'Washington', 'Verizon Wireless', 'New Mexico', 'Montana', 'Verizon', 'The Federal Communications Commission', 'FCC', 'FCC', '$16 million', 'April of 2014', '911', '911', 'ten', 'August 30', 'KMTC', 'United Marine Agencies Pvt Ltd', 'Evergreen Lines', 'GreenPak Shipping', 'Karachi', 'PKR 610 billion', 'USD 4.96 billion', 'the Federal Investigation Agency', 'October 30', 'CGT', 'Port', 'TEPSA', 'TEPSA Barcelona', 'MEG Global, Cepsa', 'Dow', 'Exxon Innovyn', 'Shell', 'Ercros', 'TEPSA Barcelona', 'Mercedes-Benz', 'Charleston', 'South Carolina', 'September 11', 'Hurricane Florence', 'Mercedes-Benz', 'last week', '20,000', 'Amazon', 'last-mile', 'Hurricane Florence', 'Mercedes-Benz', 'Mercedes-Benz', 'October 9', 'Santos', '98', 'Ibama', '48 hours', 'October 8', 'Santos', 'eight', 'November 1', 'About 3,000', 'Centre of Indian Trade Unions', 'Labour Progressive Federation', 'All India Trade Union Congress', 'Indian National Trade Union Congress', 'Pallavan Salai', 'MTC', 'Thursday, October 4', 'China', '23.1 percent', '75.5 percent', 'the United States', 'US', 'the European Union', 'EU', 'Singapore', 'August 20', 'around 75.5 percent', 'US', 'Exxon Mobil', 'US', 'Exxon Mobil Chemical', 'EU', 'about 71.9 percent', 'Arlanxeo Belgium', '27.4 percent', 'Arlanxeo Singapore', '23.1 percent', 'Singaporean', '45.2 percent', 'Friday', 'Nepal', 'China', 'four', 'Tianjin', 'Shenzhen', 'Lianyungang', 'Zhanjiang', 'Lanzhou', 'Gansu Province', 'Xigatse', 'Lhasa', 'the Tibet Autonomous Region', 'Nepal', 'China', 'Asian', 'Nepal', 'Japan', 'South Korea', 'China', 'India', 'Nepal', 'India', 'late 2015', 'Nepal', 'China', 'Nepal', 'India', 'Friday', '24 August', 'Huizhou', '40', 'July', 'Jasic International', 'Guangdong Province', 'Beijing', 'Rotterdam', 'Netherlands', 'Chengdu', 'China', 'Kaliningrad', 'Russia', 'early November', 'first', 'three', 'Rotterdam', 'Chengdu via Kaliningrad', 'the end of the year', 'Chinese', 'two', 'the Yangtze River', 'Taicang', 'Tuesday', 'At least four', 'Shanghai', 'Jiangsu', 'Zhejiang', '17 August', 'Shanghai', 'Friday', 'morning', 'over 60 miles per hour', '18 August', 'the Meteorological Bureau of Shenzhen Municipality', 'a Rain Storm', 'Shenzhen', '15:00', 'the Shenzhen Traffic Police', 'October 7', 'Chinese', 'Chang Sheng 3', 'Zhoushan', 'Ningbo', '3 PM', 'October 6', '11', '4PM', 'that day', 'the Chang Sheng 3', 'September 17', 'six', 'Chinese', 'Typhoon Mangkhut', 'The Port of Nansha', 'September 15', '72 hour', 'The Port of Chiwan', 'September 15', '72 hour', 'The Port of Yantian', 'September 14', '72 hour', 'The Port of Hong Kong', 'September 15', '60 hour', 'The Port of Fuzhou', 'between September 15 and 16', 'The Port of Xiamen', 'September 17', '12PM', '12 hour', 'Mangkhut', 'LNG', 'Matarbari', 'LNG', 'Dhaka', 'Chittagong', 'over 150 million cubic feet', 'Saturday', 'Clan del Golfo', 'Colombia', 'the holiday season', 'December 8th, 2018', 'January 10th, 2019', 'Clan del Golfo', 'Gaitanista Self-Defense Forces of Colombia', 'AGC', 'recent years', 'Clan del Golfo', 'early July of this year', 'the final days', 'the Juan Manuel Santos', 'Clan del Golfo', 'Iv n Duque', 'Clan del Golfo', 'recent months', 'Colombia', 'September 13', 'Hampton Roads', 'Virginia', 'Florence', 'Lamberts Point', 'Pier IX', 'Dominion Terminal Associates', 'several days', 'the Port of Norfolk', 'metallurgic coal', 'Hampton Roads', 'Florence', 'Hong Kong', \"Typhoon Mangkhut's\", 'the Mui Wo', 'Kennedy Town', 'Shek O', 'Tsim Sha Tsui', 'Sai Kung', 'Chai Wan', 'Coastal Virginia', 'Eastern Shore', 'Approximately 245,000', 'Christopher Newport University', 'Newport News', 'the College of William', 'Mary', 'Williamsburg', 'San Clemente', 'Dec 15, 2018', 'DP World', 'Callao', 'Peruvian', 'dozens', 'Buenaventura', 'Colombia', 'Puerto Angamos', 'Chile', 'December 16', 'September 10', 'Codesp', 'the Port Authority', 'Sao Paulo', '665.36', 'EUR 138.37', 'USD 160.34', 'Codesp', 'Maritime Agents and Waterway Operators', 'Porto Sem Papel', 'the Supervia Eletronica de Dados', 'the Port Traffic System', 'the Port of Santos', 'Port of Santos', 'Colombo', 'Horana', 'December 10', 'the Sri Lanka Transport Board', 'SLTB', 'December 20', 'the Port of Los Angeles', 'Long Beach', '2.5 to 3.5 days', 'the Lunar New Year', 'the Port of Los Angeles', 'Long Beach', 'Typhoon Mangkhut', 'China', 'early last week', 'the last days', 'the Port of Hong Kong', '12 hours', 'September 29', 'the Port of Chiwan', 'up to 1 day', 'September 29', 'the Port of Yantian', 'up to 1.5 days', 'the coming 3 days', 'October 16', 'the Virginia International Gateway', 'the Port of Norfolk', 'the past week', 'August 21', 'Malta Freeport', 'Malta', 'the Port of Algeciras', 'Spain', 'October 10', 'the Port of Manzanillo', 'Mexico', 'Asia', 'December 12', 'the Port of San Antonio', 'Chile', 'December 5', 'the Port of Long Beach', '5-6 days', 'December 3', '\"Lanka Jaya\"', 'High Court', 'Chittagong', 'November 29, 2018', '14.520 tonnes', 'Chittagong', 'November 26', 'December 1', 'Liberia', 'MSC Lana', 'Sharjah', 'United Arab Emirates', 'Mundra', 'December 3', 'Hamburg Sud', 'Cap San Marco', '5', 'December 2', 'the Port of Santos', 'Brazil', 'about 45 minutes', 'About 402 kg', 'one', 'the Port of Paranagua', 'OCEAN UNITED', 'CAT', 'Talisay City', 'Cebu City', 'Philippines', '3', 'Ceby', 'August 13', 'MSC Chloe', '13 40', 'the Port of Durban', 'South Africa', 'August 7', '25', 'the South African Coast Guard', 'the Port of Durban', 'August 9', 'at least August 13', 'November 6', 'Aebelo Island', 'Hamburg', 'Germany', 'Frederica', 'Denmark', '09:30', 'November 6', 'October 17', 'West Scheldt', 'Hansweert', 'Netherlands', 'Antwerp', 'Wilhelmshaven', 'Germany', '15', 'Hai Su', '10', 'Longxue Island Container Terminal', 'Nansha Port', 'Guangzhou', 'November 26', '12:20', 'Hai Su 10', '21:00', 'APM', 'India', 'Nava Sheva', 'Jawaharlal', 'Nehru Port', 'Mumbai', 'recent months', 'APM', 'September 28', '500', 'February', 'about 99', 'Transportation', 'Genoa', 'midday', 'August 14', 'A10', 'the Port of Genoa', 'about 5 kilometers', 'August 14', 'August 16', 'Genoa', 'August 14', 'only one', 'months', 'Genoa', 'the coming months', 'Genoa', '1', 'Genoa', '2', 'Container', 'Genoa', 'Torino', 'Milan', 'Italy', 'French', 'Menton', 'A12', 'A10', '3', 'the Port of Genoa to Milan', 'Milan', 'Germany', 'Switzerland', 'Genoa', 'Ilva', 'Cap San Tainaro', 'the Colombian Customs', 'Port of Caucedo', 'Dominican Republic', 'August 6', 'Rotterdam', 'Netherlands', 'around 01:00', 'August 16', 'September', '20', 'Sfax', 'Tunisia', 'Sfax on Sep 8', 'Malta', 'recent months', 'first', 'August', '9 days', 'November 5', 'MV', 'CC Mumbai', 'Hapag-Lloyd’s Indian-Ocean-Service', 'India Westcoast', 'North Europe', 'Rotterdam', 'CC Mumbai', 'Rotterdam', 'Antwerp & Le Havre', 'Hamburg', 'London Gateway', 'November 5', 'MV', 'CC Mumbai', 'Hapag-Lloyd’s Indian-Ocean-Service', 'India Westcoast', 'North Europe', 'Rotterdam', 'CC Mumbai', 'Rotterdam', 'Antwerp & Le Havre', 'Hamburg', 'London Gateway', 'Farrah Street', 'Crystal Park', 'Benoni', 'Friday, November 12', 'Durban', 'EUR', 'Thursday, September 20', 'the Port Authority', 'Civil Guard', 'Barcelona', 'Thursday', 'October 25', 'Japanese', '3', 'Nagoya', 'Taiwan', 'Nagoya', 'Nagoya', 'Wednesday', 'Italian', 'Giuseppe Conte', 'one-year', 'Liguria', 'Genoa', 'Tuesday', 'Conte', '$5.7 million', 'Liguria', 'At least 39', '260-foot', 'Morandi Bridge', 'at least 16', 'A10', 'about 150 feet', 'the Polcevera River', 'More than 400', 'Autostrade', 'Italia', 'Tuesday', 'fifth', 'Italy', 'as many years', 'Italian', 'Autostrade', 'Italian', 'Danilo Toninelli', 'Autostrade', 'every three months', '$1.13 billion', 'the last five years', 'Matteo Salvini', 'European Union', 'Tuesday', '1967', 'Italian', 'French', 'Italy', 'the 1950s and 1960s', 'about 50 years', 'Port of Tanjung Pelepas', '300 kilograms', 'Malaysian', '18 million', 'USD 4,300,560', 'EUR 3,822,423', 'November 1', '14:00', 'two', 'Malaysia', 'Port Klang', 'Selangor', 'August 21', 'Sri Lankan Customs', '40', 'Nhava Sheva through Colombo', 'Indonesia', 'Customs Preventive Surveillance', 'Cargo', 'Agriculture', 'TourismOn', '27 November 2018', 'Chile', 'Felipe Larrain', 'Valparaiso', '11 days', 'at least 14', 'three', 'San Antonio', 'Valparaiso', 'San Antonio', 'a day', 'hours', 'at least 20,000', 'at least USD3.5 million', '2013â\\x80\\x9314', 'three weeks', 'approximately USD300 million', 'Chile', 'several days', 'San Antonio', 'Valparaiso', 'San Antonio', 'Valparaiso', 'season', 'next week', 'early December', 'Valparaiso', 'the Port Union', 'Antofagasta', 'IHS Markit Foresight', '2018', 'December 10', 'the Port of Bremerhaven', 'the past weekend', 'December 10', 'September 20', 'Delta', '472', 'Sao Paulo Guarulhos International Airport', 'New York’s', 'JFK International Airport', 'Port Authority Police Department', '5:30AM', 'September 20', 'Delta', '767', 'the Port of Fuzhou', 'December 4', 'between 08:00-12:30', 'November 26', 'Port of Dalian', 'the evening of', 'November 25', 'the Port of Algeciras', 'the early morning', 'August 13', '24-hours', 'December 6', 'Port of', 'Houston', 'December 7 and 8', 'October 4', '‘Iduna', 'the Baltic Sea', 'October 2', 'Klaipeda', 'Lithuania', 'Hamburg', 'Germany', 'October 4', 'Klaipeda', '18:00', 'Brazil', 'the last two weeks', 'May 2018', 'the past several weeks', 'Brazil', 'Santos', 'Paranagua', 'ANTT', 'The Brazilian Supreme Federal Tribunal', 'June 28', 'August 27', 'the Supreme Federal Tribunal', 'August 2018', 'Brazilian', 'Monday', 'Djibouti', 'the Doraleh Container Terminal', 'Isma l Omar Guelleh', 'Sunday', 'Djibouti', '66.66 percent', 'Monday', 'Djibouti', 'Dubai', 'DP World', '33.33 percent', 'Earlier this year', 'Djiboutian', 'DP World', '30-year', 'Dubai', 'the London Court of International Arbitration', 'February', 'Djibouti', 'DP World', 'the morning of', 'December 22', 'Altenwerder, Port of Hamburg', 'about ten feet', 'the International Longshore and Warehouse Union', '502', 'Global Container Terminals', '72 hour', 'September 3, 2018', 'September 07, 2018', 'Deltaport', 'Vancouver', 'months', 'Canada', '502', 'Planners', 'GCT', 'Planners', 'Deltaport', 'GCT Vanterm', 'Deltaport', 'Vancouver', 'the next days', 'Maasvlaakte', 'the Port of Rotterdam', '2 hours', 'December 13', 'ECT', 'Rotterdam Delta', 'the Korean Metal Workers Union', 'KMWU', 'Hyundai Heavy Industries', 'HHI', 'Ulsan', 'three days', '2,000', 'The first day', '9:00 AM to 5:00 PM', 'Monday', 'Tuesday', 'Wednesday', 'the Port of Barcelona', 'Ronda Litoral', 'B-10', 'Port Forum', 'September 21', 'Sao Paulo', 'between September 21', '22', '6AM', '6PM both days', 'September 28', 'Rua Boa Vista', 'Ladeira Porto Geral', 'Largo de Sao Bento', 'Rua Libero Badaro', 'Trecho da Rua Florencio de Abreu', 'da Constituicao', 'Rua Boa Vista', 'Praca da Se', 'Rua Venceslau Bras', 'Rua Floriano Peixoto', 'Florencio de Abreu', 'Ladeira da Constituicao', 'Rua Senador Feijo', 'Rua Cristovao Colombo', 'Rua Riachuelo', 'Avenida Prestes Maia', 'Avenida Senador Queiros', 'Avenida Ipiranga', 'Avenida Sao Luis', 'Rua Coronel Xavier de Toldeo', 'Praca Ramos de Azevedo', 'Rua Conselheiro Crispiniano', 'Avenida Sao Joao', 'the Jacarei Viaduct', 'Rua Maria Paula', 'Paulina Viaduct', 'Praca', 'Joao Mendes', 'Rua Anita Garibaldi', 'Rua Roberto Simonsen', 'the aforementioned days', 'Temasek', 'Singapore', 'Sundays', 'WGS', '84', '1', '15.706’N', '38.851’E', '2', '13.164’N', '103', '39.876’E', '3', '13.030’N', '103', '39.515’E', '4', '13.119’N', '103', '39.481’E', '5', '1 deg', '13.759’N', '39.500’E', '6', '1 deg', '14.548’N', '39.133’E', '7', '1 deg', '15.440’N', '103', '38.709’E', '8', '15.705’N', '103', '38.709’E', '9', '15.705’N', '103', '38.709’E', 'first', 'January 5', 'Singapore', 'October 19', 'Port Authority of Singapore', 'July 21 to October 20', 'the Petrochemical Corporation of Singapore', 'daily', '24-hour', 'WGS', '84', '1', '01 deg', '15.626’N', '43.497’E', '2', '01 deg', '15.738’N', '43.740’E', '3', '15.668’N', '103', '43.866’E', '4', '01 deg', '15.557’N', '103', '43.623’E', 'Greek Coast Guard', 'EVER CONQUEST', 'Keratsini Piraeus Container Terminal', 'early in the morning', 'October 17', '51', 'some 53 kilograms', 'marijuana', 'September 12', 'the Port of Jebel Ali', 'three', 'fourth', 'DH 12000', 'EUR', '2808.87', 'USD 3267.17', 'September 22, 2017', 'the Port of Jebel Ali', 'October 23', 'Dutch', 'Jager', 'October 22', 'Rotterdam', 'Hengelo', 'Rhine', 'German', 'Wendelin', 'Seven', 'Netherlands', 'Netherlands', 'weeks', 'Amsterdam', 'Europe', 'Thursday', 'seven', 'Netherlands', 'Arnhem', 'Weert', 'nearly 400', 'the Special Interventions Service', 'five', 'about 220 pounds', 'Thursday', 'between 18 and 34 years of age', '34-year-old', 'Hardi N.', 'Iraqi', 'Three', 'Arnhem', 'two', 'Rotterdam', 'one', 'Huissen', 'Vlaardingen', 'Three', 'Islamic State', 'The National Coordinator for Counterterrorism and Security', 'The General Intelligence and Security Service', 'AIVD', 'April', 'several months', 'Netherlands', 'Islamic', 'France', 'Germany', 'Belgium', 'the United Kingdom', 'recent years', 'Netherlands', 'Europe', 'the Middle East', 'Amsterdam', 'two', 'Americans', '19-year-old', 'Afghan', 'Germany', 'recent years', 'Mark Rutte', 'Netherlands', 'four', 'five', 'Netherlands', 'Europe', 'Islamic', 'Europe', 'the Middle East', 'Dutch', 'Geert Wilders', 'Muslims', 'anti-Islamic', 'Netherlands', 'Thursday', 'months', 'Amsterdam', 'Thursday', 'Three', 'Manhattan', 'two', 'March', 'dozens', 'Thousands', \"Women's March Alliance\", 'Central Park', '6th', 'W 43rd St.', 'Foley Square', 'Lafayette St', 'Worth St', 'several hundreds', \"Women's\", 'March NYC', 'The New York Immigration Coalition', 'a Women s Unity Rally', 'third', \"Women's\", 'March', 'Grand Central Terminal', 'Park Ave', 'E Oakland Park Blvd', 'Coral Shores Dr.', 'Eastern Cape', 'East London', 'Humansdorp', 'Port Alfred', 'Tropical Storm Rumbia', 'Shandong', 'Liaoning', 'Jiangsu', 'Anhui', 'Henan', 'Quanzhou City', 'At least 32', 'Rumbia', '14', 'Shandong', '12', 'Anhui', 'At least 15', 'One', 'Shouguang', 'one', 'More than 10,000', 'Shouguang', 'Approximately 140,000', '102,800', 'Shandong Province', '37,800', 'Liaoning Province', 'More than 34,400', 'an estimated 110,000', 'almost 820,000 acres', 'Shouguang', 'Shandong', 'US$ 1.45 billion', 'Shandong', 'Eastern South Carolina', 'Hurricanes Florence', 'Michael', 'Nine Florence', 'South Carolina', '43', 'North Carolina', 'two', 'Virginia', 'South Carolina', 'at least $5.5 billion', 'at least $3.5 billion', 'Cheraw', 'Amtrak', 'Monday, September 24', 'Washington, DC', 'the East Coast', 'Hurricane Florence', 'The Auto Train', 'Lorton', 'VA', 'Sanford', 'FL', 'Silver Meteor', 'New York', 'NY', 'Miami', 'FL', 'today', 'Palmetto', 'New York', 'Savannah', 'GA', 'Tuesday, September 25', 'The Silver Star', 'Jacksonville', 'FL', 'Miami', 'FL', 'Amtrak', 'Canal Uno', 'Guayaquil', '17 August', 'Avenida Francisco de Orellana', '112', 'Avenida Francisco de Orellana', 'The Meteorological Authority', 'Cairo', 'Alexandria', '10 November', 'the day', 'August 22', 'Eid al-Adha', 'Port of Surabaya', 'working hours', 'October 25', 'Kievietstraat', 'Beveren', 'Antwerp', 'Belgium', 'the night of October 24', 'the Erie Canal', 'Scotia', 'Fort Plain', 'The New York State Canal Corporation', 'Mohawk River', 'Erie Canal', 'Durban', 'the Expanded Public Works Programme', 'eThekwini', 'Monday, October 8', 'Clairwood', 'Durban', 'Isipingo', 'Springefield, Overport', 'Newlands', 'Monday', 'Protests', 'Tourism; Restaurants; Telecommunications', 'EducationOn', '20 September 2018', 'seven', 'Chicago', 'Marriott International', 'two-week', 'the UNITE HERE Local 1 union', '19', 'Chicago', '7 September', '17 September', 'Detroit', 'Marriott', 'Chicago', 'UNITE', 'Boston', 'Hawaii', 'Oakland', 'San Diego', 'San Francisco', 'San Jose', 'Seattle', 'two', 'the Democratic Attorneys General Association', 'the LGBTQ Health Symposium', 'Chicago', 'Chicago', '1903', 'the Bureau of Labor Statistics', '1,000', 'approximately 350', 'annually', 'the 1970s', 'seven', '2017', 'Jacobin', '16', '2018', '3.8%', 'the coming months', 'last weeks', 'months', 'months', 'Marriott', 'IHS Markit Foresight', '2018', '51', 'Richards Bay', 'Fangcun Port', 'Nei Si', 'Guangzhou', 'China', 'October 31, 2018', 'October 1, 2018', 'October 31, 2018', 'Fangcun', 'Hong Kong', 'September 26, 2018', 'October 3', 'the Federal Police', 'Receita Federal', '435 kilograms', 'Antwerp', 'the Port of Santos', 'October 3', 'September 28', 'the Federal Police', 'Receita Federal', 'the Port of Paranagua', '305 kilograms', 'the evening of September 27', 'Barcelona', 'Paranagua', 'Tassili II', 'Han Xin', 'Port of Oran', 'Algeria', 'early in the morning', 'September 1', 'several meters', 'Port of Dammam', 'Saudi Arabia', 'Port of Iskenderun', 'Turkey', 'the Port of Los Angeles', 'Ferry St and Seaside Fwy', 'Around 100', 'Evergreen', 'Indonesian', 'Surabaya', 'November 2', 'Jalan Karah', 'Jambangan District', 'Surabaya', 'December 29', 'Smoke', 'first', '20 percent', 'Lürssen', 'Bremen', 'Friday', 'morning', '100-metre', 'October 9', 'Russian', 'Keila', 'Bahamian', 'Baltic Pearl', '7:30 AM', 'October 9', 'St. Petersburg', 'two', 'November 13', 'Martorell', 'Barcelona', 'Falck SCI', 'November 1', 'third', 'Thai', 'Co., Ltd', 'Siam, Bangsai', 'Phra Nakhon Si Ayutthaya', 'November 7', 'the next morning', '9', 'early in the morning', 'October 17', 'Qiongzhou Strait', 'Guangzhou', 'Haikou', 'Hainan island', 'China', 'five', 'two', 'Panvel', '12', 'Apollo Container Freight Station', 'the customs department', 'September 15', 'Bhavani Shipping Services Pvt Ltd', 'two', 'JNPT', 'Jawaharlal', 'Nhava Sheva', 'CFS', 'May 2017', 'Sunday', 'Reynosa', 'Mexico', 'Tamaulipas', 'U.S.', 'Texas', 'La Ca', 'Las Fuentes', 'Five', 'Three', 'One', 'two', 'two', 'Reynosa', 'Reynosa', 'Tamaulipas', 'Reynosa', 'Sunday', 'Friday', 'Bangladesh', 'first', 'LNG', 'Chittagong', 'Moheshkhali Island', 'the Bay of Bengal', 'US', '$180 million', 'Petrobangla, Excelerate Energy', 'the International Finance Corporation', 'LNG', 'Bangladesh', '20 percent', 'Excelerate', '15 years', 'Petrobangla', 'Bangladesh', 'LNG', '70 percent', 'Bangladesh', 'LNG', 'October 2017', 'more than 350', 'Gazipur', 'Ashulia', 'Savar', 'Kashimpur', 'Bangladesh', 'LNG', 'Spain', 'the Port of Algaeciras', 'Spain', 'Madrid', 'January 2019', 'Antequera', '3/100', 'Tinajas', 'Seville', 'the Port of Algaeciras', 'September 14', 'Hurricane Florence', 'Canfor', 'Conway', 'Darlington', 'South Carolina', 'Domtar', 'Plymouth', 'NC', 'International Paper Co', 'Carolinas', 'KapStone', 'Charleston', 'NC', 'Summerville', 'SC', 'December 27', 'the Port of Houston', 'the evening', 'December 24', 'November 27', 'DP World', 'the Port of Southampton', 'November 28', 'Port of Houston', 'India', 'Indian', 'Kochi', 'Chennai', '2-3 days', 'the Bay of Bengal', 'the next 24-hours', 'Chittagong', 'Kolkata', 'Haldia', 'the Bay of Bengal', '24-hours', 'Chittagong', 'Kolkata', 'Haldia', 'December 5', 'Egyptian', 'the Port of Alexandria', 'second', 'the Port of Alexandria', 'Barcelona', 'Spain', 'Lyon', 'France', 'One', 'Zaragoza', 'Madrid', 'Pamplona', 'Miranda de Ebro', 'Tarragona', 'Burgos', '8 December', 'World March', 'Climate', 'Paris', 'Place Joffre', '14:00', 'Angers', 'Place Leclerc', '14:30', 'Bordeaux', 'Place de la Bourse', '14:00', 'Dijon', '14:30', 'Grenoble', 'Place de Verdun', '14:00', \"Le Havre: Place de l'Hôtel de Ville\", '14:00', 'Lille', 'Porte de Paris', '15:00', 'Place Léon Betoulle', '11:00', 'Lyon', '10:30', 'Marseille', 'Quai de Rive Neuve', '14:00', 'Montpellier', \"Place de l'Europe\", '14:30', 'Nantes', '14:00', 'Nice', 'Place Garibaldi', '14:00', '14:00', 'Strasbourg', 'Place de la République', '14:00', 'Toulouse', '14:00', 'German', 'Bremen – Sebaldsbruck', 'Mercedes Benz', 'German', 'Daimler AG', 'Turkish', 'the afternoon of December 15', 'the Strait of Dover', 'Antwerp', 'Algeria', 'North of Calais', 'Wednesday', 'Dhaka', 'Chittagong', 'Sunday', 'LNG', '150 million cubic feet', 'Households', 'Dhaka', 'Chittagong', 'two', 'MANGKHUT', 'Hong Kong', 'Sunday', 'Hong Kong', 'Hutchison International Terminal', '23:00 Local', 'September 14, 2018', '06:00 Local time', 'September 15, 2018', 'September 16', 'Filipino', 'Princess Vanessa', 'Mangkhut/Ompong at Tanza on the Cavite coast', 'Manila Bay', 'September 15', 'the Princess Vanessa', 'September 13', 'Georgia', '0.36%', 'Savannah', 'Augusta', '0.42%', 'Atlanta', 'Georgia', 'A1', 'Gross Ippener', 'Stuhr, Lower Saxony State', 'Wednesday', 'At least one', \"Grundschule Turmweg'\", 'Hamburg', 'Tuesday', '25 September', 'Seebrücke', 'the Mediterranean Sea', 'EU', 'between 19:00 and 20:00', 'Hamburg Port', 'Friday', 'morning', 'today', 'the Mediterranean Sea', 'Seebrücke', 'Düsseldorf', 'Königsallee', 'Schadowplatz', '11:00', 'Hamburg', 'City Hall', '11:00', 'Bremerhaven', 'Columbus Memorial', 'Columbus Center', '12:00', 'Lüneburg', 'Clamartpark', '12:00', 'Detmold', 'Bahnhof', 'Bahnhofstraße', 'Münster', 'Überwasserkirchplatz', 'Kiel', '13:30', 'Halle', 'Saale', 'Konzerthalle Ulrichskirche', 'Christian-Wolff-Straße', '14:00', 'EUROPA-Galerie (Trierer Straße', '14:00', 'Berlin', 'Dunckerstraße', '15:00', 'Düsseldorf', 'Fichtenstraße', '15:00', 'Mainz', 'Gutenbergplatz', '15:00', 'Verden', 'Aller', 'Spielplatz Allerpark', '15:00', 'Berlin', 'Wagenburg Lohmühle', 'Lohmühlenstraße', '16:00', 'Erlangen', 'Besiktas-Platz', 'Rathausplatz', '16:00', 'Flensburg', '16:00', 'Duisburg', 'Ludgeriplatz', '17:00', 'Reutlingen', 'Marktplatz', '17:00', 'Karlsruhe', 'Marktplatz', '17:30', 'Venezuelan', 'Nicolas Maduro', '4 August 2018', 'two', 'Bolivar Avenue', 'Caracas', 'Maduro', 'two', 'Unmanned Aerial Vehicles', 'one', 'C-4', 'State', 'Maduro', 'thousands', 'Maduro', 'Colombian', 'Juan Manuel Santos', 'US', 'Florida', 'Colombian', 'US', 'Maduro', 'Interior', 'Nestor Reverol', '5 August', 'six', 'March 2014', 'Soldados de Franela', '7 August', 'Peruvian', 'Miami', 'Maduro', 'the last month', '8 August', 'two', 'Second', 'IHS Markit Foresight', '2018', 'the Greater Medell', '95 percent', 'Copacabana', 'Medell', '961', 'approximately 197', '37', 'Medell n', 'at least 183', 'at least 103', 'El Pesebre', 'Belalc', 'Girardot', 'San Antonio de Prado', 'San Crist', 'Greece', 'Piraeus, Rafina', 'Lavrio', 'Alexandroupolis', 'Samothraki', 'the Panama Maritime Authority', 'AMP', 'the Parque Catedral', 'early Thursday', 'September 6, 2018', 'Balboa', 'Two', 'the Banco de Credito del Peru', '31 October', 'Avenida 28 Julio', 'Peruvian', 'Lima Miraflores', 'BCP', 'four', 'two', 'two', 'BBVA Continental Bank bureau exchange', '20 October', 'Lima', 'Barranco', 'Miguel Dasso Street', 'Lima', 'San Isidro', 'Barranco', 'San Isidro', 'Lima', 'Lima', 'Comas', 'March', 'three', 'two', 'Lima', 'El Callao', 'Comas', 'El Agustino', 'Independencia', 'La Victoria', 'Los Olivos', 'San Juan de Lurigancho', 'San Martin de Porres', 'IHS Markit', 'Miraflores', 'Barranco', 'San Isidro', 'Lima', 'El Callao', 'one-year', 'Lima', 'IHS Markit Foresight', '2018', 'November 1', 'Transnet Port Terminals', 'Pier 1 Container Terminal', 'the Port of Durban', 'Tuesday', 'morning', 'Sant Lluís', 'Zurbarán', 'Trasmediterranea', 'Barcelona', 'November 9', 'the Port of Colombo', 'Sri Lanka', '12 hours', 'this week', 'December 13', 'the Port of Charleston', 'the day', 'December 13', 'Port of Houston', 'Thursday', 'the Colon Free Trade Zone', 'FTZ', 'Colon', 'Panama', 'FTZ', 'The Colón Free Trade Zone', 'Americas', 'Latin America', 'Caribbean', 'August 20', 'Shenzhen Customs', 'SZX', 'the next two weeks', 'ninth', 'the International Defense Exhibition', 'Seminar', 'Karachi', 'Pakistan', 'November 27', 'four-day', 'the Karachi Expo Center', 'Karachi', 'November 30', 'November 23', 'Chinese', 'Karachi', 'seven', 'three', 'the Baloch Liberation Army', 'BLA', 'Chinese', 'BLA', 'Chinese', 'last Friday', 'Beijing', 'Pakistan', 'China', 'Gwadar', 'Balochistan', 'CPEC', 'Pakistan', 'Karachi', 'between November 27 and November 30', 'tertiary', 'Ho Chi Minh City', 'Tropical Storm Usagi', 'The Binh Thanh', 'Vap', 'Wednesday, November 28', 'at least two', 'More than 400', 'Vietnam', '4,100', 'Can Gio District', 'More than 50', 'September 7', 'the Port of Durban', 'September 10', 'the Port of Durban', 'Women', 'the Sai Kung Sewage Treatment Works', 'Typhoon Mangkhut', 'September', 'the coming months', 'October 9', 'Hong Kong', 'Feng Huang Ao', 'the morning', 'October 5', 'Nantucket', 'Antwerp', 'New York', 'New York', 'October 8', 'October 24', 'Hong Kong', 'HKD 2.6 million', 'EUR', '291978.62', 'USD 332521.28', 'Jordanian', 'Customs', 'Jong Kong', 'The Foreign and Commonwealth Office', 'Typhoon Mangkhut', 'Hong Kong', 'Sunday 16 September', 'Typhoon Mangkhut', 'the Philippine Sea', 'Hong Kong', 'Wednesday', 'Tropical Storm Bebinca', 'Hong Kong', 'Tropical Storm Bebinca', 'No?3', 'Tuesday', 'early this morning', 'The Hong Kong Observatory', 'HKO', \"Tropical Storm Barijat's\", 'China', 'Hong Kong', 'Barijat', 'Hong Kong', 'HKO', 'September 11', 'Hurricane Florence', 'Charleston', 'SC', 'September 11', 'noon', 'September 11', 'South Carolina', 'Charleston', 'September 11', 'Hurricane Florence', 'Richmond', 'VA', 'September 11', 'Virginia', 'Richmond', 'Richmond', 'September 11', 'Hurricane Florence', 'Savannah', 'September 11', 'Savannah', 'October 10', 'Michael', 'later today', 'the Florida Big Bend', 'Category 4', 'up to', '130 mph', 'Florida', 'Alabama', 'Airbus', 'Boeing', 'Northrop Grumman, Crestview Aerospace', 'BAE Systems', 'Hitachi Cable Automotive Products USA', 'Danfoss Turbocor', 'Fort Walton Machining', 'Hyogo Prefecture', 'Typhoon Cimaron', 'more than 315,000', 'Kobe', 'Ako', 'Minami-Awaji', 'Kamikawa', 'October 30', 'Ilva di Corniglianoon', '24-hour', 'Fiom', 'November', 'Ilva Cornigliano', 'Genoa', 'November 15', 'the Port of Dekheila', 'Alexandria', 'Customs', 'October 24', 'November 14', 'the week', 'Alexandria', 'the next few days', 'Barcelona', 'thousands', 'only 11.7%', '1.2%', 'Callao', 'Europe', 'Callao', 'Cartagena', 'ACOD union', '24-hour', 'Bruges, Menen', 'Evergem', 'Oudenaarde', 'Antwerp', 'Karachi', 'Sindh', 'Pakistan', '18', 'Indian', 'Pakistani', 'Lippo Kuningan', 'South Jakarta', 'Grab', 'Mersin', 'HDP', 'HDP Hakkari MP', 'St Petersburg', '30', 'Valenzuela City', 'Metro Manila', 'some 300', 'Protests', 'Road', '13 November', 'South Korean', 'Lee Nak', \"Hyundai Motor's\", 'Gwangju Metropolitan City', '12,000', '13 November', \"GM Korea's\", 'second', 'the Korea Development Bank', 'three', '2014', 'the Economic, Social and Labor Council', 'ESLC', 'South Korean', 'Moon Jae-in', '3.8%', '2018', '2.7%', \"South Korea's\", 'the Korean Confederation of Trade Unions', 'KCTU', 'the Federation of Korean Trade Unions', 'June', 'the National Assembly', 'two', 'up to tens of thousands', 'Seoul', 'Busan, Gwangju', 'Ulsan', 'KRW billions', 'annual', 'weeks', 'the National Labor Relations Commission', 'Korea Railroad', 'November', '2015', 'KCTU', 'ESLC', 'IHS Markit Foresight', '2018', 'October 24', 'hundreds', 'the Jalipa-Puerto', 'the Port of Manzanillo', 'recent days', 'the Port of Manzanillo', 'Tapeixtles', 'El Naranjo', 'Interstate warSectors', 'InfrastructureOn', '19 November', 'Chinese', 'Xi Jinping', 'first', 'Brunei', 'Bruneian Sultan Hassanal Bolkiah', 'Brunei', 'Chinese', 'the Belt and Road Initiative', 'BRI', 'Chinese', 'Brunei', 'Muara Besar', 'two', 'Borneo', 'the South China Sea', 'SCS', 'Brunei', 'Chinese', 'about 90%', 'Brunei', 'Ministry of Finance', 'fiscal year', '2017â\\x80\\x9318', 'about USD3.3 billion', 'about USD3.9 billion', '2015â\\x80\\x9316', 'Brunei', 'China', 'SCS', 'Brunei', 'China', 'Brunei', 'third', 'SCS', 'the Quadrilateral Security Dialogue', 'Australia', 'India', 'Japan', 'the United States', 'August 2018', 'Brunei', 'the United States', 'first', 'IHS Markit', 'China', 'Brunei', 'less than 100', 'BRI', 'Brunei', 'Brunei', 'China', 'ASEAN', 'SCS', 'IHS Markit Foresight', '2018', 'Hindu', 'ten-day', 'five', '15-19 October', 'West Bengal', 'Bengaluru', 'Socio Cultural Association of Indiranagar', 'Bhubaneswar', 'Rasulgarh', 'Chennai', \"Besant Nagar's\", 'Bengali Association', 'Gurugram', '15', 'Hyderabad', 'Bangalee Samity Community Centre', 'Kolkata', 'Bengali Club', 'Shivaji Marg', 'Mumbai', 'Balkanji Bari', 'Santacruz', 'Nagpur', 'Dhantoli', 'New Delhi', 'Aram Bagh', 'Nandanik Durgapuja', 'Koregaon Park', 'Varanasi', 'the Regional Meteorological Centre', 'Chennai', 'north-east', '26 October', 'two', 'the Gulf of Thailand', 'the North Andaman Sea', 'Bengal', 'Indian', 'Chennai', 'Puri', '13 December', 'Chennai', 'Visakhapatnam', 'Puri', '14 December', 'Tuesday', 'Denggao Middle Road', 'Xinluo District', 'Longyan', 'Fujian Province', '1,300 feet', 'At least eight', '22', '48-year-old', 'Xinluo District', 'Tuesday', 'China', 'September', 'at least 11', 'Hunan s Hengyang District', 'Zhejiang', 'Ningbo', 'three', 'Chongqing', 'Banan District', '14', 'Tuesday', 'Longyan', 'Saturday', 'Beilun District', 'Ningbo City', 'Zhejiang Province', 'At least three', '15', 'first', 'around 6:30 PM', 'one', 'Chunxiao Ave', 'around 11:15 PM', 'Zhejiang', 'Hunan Province', 'September', '11', '44', 'Saturday', 'China', 'Central Jakarta', 'Jalan Bungur', 'Besar Raya', 'December 10', 'the Port of Los Angeles', '24-hours', 'October 15', 'the Pacific International Lines', 'PIL', 'Singapore', 'Iran', 'the United States', 'Iran', 'Maersk Line', 'Mediterranean Shipping Company', 'CMA CGM', 'Iran', '12 December', 'Singaporean', 'Khaw Boon Wan', 'Malaysia', 'Singapore', 'January 2019', 'Malaysia', 'Foreign Ministry', 'Singaporean', 'Bahru', 'January 2019', 'Malaysia', 'Singapore', 'Tuas', 'October 2018', 'Mahathir Mohammad', 'Malaysia', 'May 2018.The', 'Malaysian', 'Singapore', 'pre-October 2018', 'Mahathir', 'Singapore', 'Malaysian', 'Mahathir', 'Singapore', 'Malaysian', 'Singaporean', '3 December', 'Malaysian', 'Singaporean', 'Tuas', 'the Singapore Strait', 'Singapore', 'Singapore', 'Malaysian', 'Johor', 'second', 'Seletar', 'Singaporean', 'January', 'IHS Markit Foresight', '2018', '25 September 2018', 'Venezuelan', 'Nicolas Maduro', '2,219-km', 'Colombia', 'Venezuela', 'Colombia', 'Venezuela', 'Maduro', 'Venezuelans', 'some 2.3 million', 'the United Nations', 'The United States', 'mid-September', 'Canada', 'Colombia', 'Guyana', '14', 'Lima Group', 'Colombia', 'Ivan Duque', '7 August 2018', 'Venezuela', 'Juan Manuel Santos', 'Venezuela', 'Santos', 'Colombia', 'Venezuelans', 'approximately 1 million', 'Venezuelans', 'Colombia', 'one-year', 'Venezuelan', 'Maduro', 'Caracas', 'Aragua', 'Carabobo', 'Miranda', 'Vargas', 'IHS Markit Foresight', '2018', 'BHP Billiton Ltd.', 'Port Hedland', 'last week', 'evening', 'November 10', '268', 'four', 'Italian', 'Piaggio Aerospace', 'Genoa', 'Friday', 'Sestri Ponente', '08:00', 'Genoa', 'late yesterday', 'November', 'Italian', 'Genoa', 'Rivalta Scrivia', 'Padua', 'Milan', 'Mercitalia Rail', 'Polo Mercitalia', 'Italian', 'the Mercitalia Rail', 'Genoa', 'Old Port', 'Italian', 'the Port of Gioia Tauro', '15', '60 percent', 'Tuesday', '17 August', 'Indonesia', 'Jakarta', 'the end of the year', 'Asian', 'October 13', 'October 15', 'December 31, 2018', '06:00 to 10:00', '16:00 to 20:00', 'Medan Merdeka', 'Barat', 'MH Thamrin', 'Sudirman', 'S. Parman', 'Subroto', 'Rasuna Said', 'MT Haryono', 'DI Panjaitan', 'Ahmad Yani', '2018', 'Asian Games', 'Indonesia', 'Kingston', 'today', '23 November', 'Senate', 'Road Traffic Act', 'the coming days', 'weeks', 'today', \"Shinjuku Station's\", 'South Exit', 'Saturday', 'afternoon', 'Henoko', 'Okinawa Island', 'Tokyo', 'Thursday', 'today', 'tomorrow', 'Tokyo', 'Keisei Electric Railway', 'Tokyo', 'Friday', 'Typhoon Trami', 'Kasai Seaside Park', 'Shin-Kiba', 'Tokyo', 'two', 'Japanese', 'this morning', '5 September', 'Rokko Island', 'Kobe', 'Hyogo Prefecture', '2', 'Higashinada Ward', 'Typhoon Jebi', 'Rokko Island', 'Tokyo', '23:59', 'Thursday 16 August', 'up to 80 kilometres', 'Japanese', 'Boeing', 'Tuesday', 'North Charleston', 'South Carolina', 'Henry McMaster', 'South Carolina’s', 'Boeing South Carolina', 'second', '787', '787', 'Thousands', 'Grab', 'Jl Bendungan Hilir', 'Jl Mutiara', 'Grab', 'Jl Denpasar', 'South Jakarta', 'the Karachi Transport Ittehad', 'KTI', 'multi-week', 'Karachi', 'late December, 2018', 'Karachi', 'the Karachi Press Club', 'Shahrah-e-Faisal', 'two', 'Kekirawa', 'Colombo', 'Batticaloa', 'approximately 1,200', 'Kingston Port', 'August 23', 'the Korea Meteorological Administration', 'Typhoon Soulik', 'Korean', 'Pusan sea', 'Incheon International Airport', '6PM', 'August 22', '5000 tons', 'Pusan', '9PM', 'August 23', 'South Korea', 'November 30', 'Port of Long Beach', 'the next few days', 'August 2018', 'thousands', 'the United Workers Front (Frente Unitario de Trabajadores', 'FUT', 'Ecuador', 'Quito', '2018', 'FUT', '20 September', 'the Confederation of Indigenous Nationalities of Ecuador', '29 August', 'the end of October', 'June', 'almost USD48 billion', '46.1%', '5%', '2018.Significance', 'thousands', 'Quito', 'Cuenca', 'Guayaquil', '2008', '2018', 'IHS Markit Foresight', '2018', '20 September 2018', 'seven', 'Chicago', 'Marriott International', 'two-week', 'the UNITE HERE Local 1 union', '19', 'Chicago', '7 September', '17 September', 'Detroit', 'Marriott', 'Chicago', 'UNITE', 'Boston', 'Hawaii', 'Oakland', 'San Diego', 'San Francisco', 'San Jose', 'Seattle', 'two', 'the Democratic Attorneys General Association', 'the LGBTQ Health Symposium', 'Chicago', 'Chicago', '1903', 'the Bureau of Labor Statistics', '1,000', 'approximately 350', 'annually', 'the 1970s', 'seven', '2017', 'Jacobin', '16', '2018', '3.8%', 'the coming months', 'last weeks', 'months', 'months', 'Marriott', 'IHS Markit Foresight', '2018', 'December 5, 2018', 'Customs Agents', 'the Port of Algeciras', 'Spain', 'the Border Inspection Post', 'the Port of Algeciras', 'up to 48 hours', 'Food Safety and Inspection', 'the Association of Customs Agents', 'Saturday', 'Sunday', '30%', 'Monday', 'Tuesday', '2', 'Monday', 'Tuesday', '10', 'Uganda', 'Lake Victoria', 'At least 13', 'at least 40', 'Vietnamese', 'Vuon Lai', 'An Phu Dong', '12', 'Ho Chi Minh City', '13:00', 'August 16', 'Liberian', 'Yangtze Harmony', 'the Port of Fremantle', 'Perth', 'August 12', '10+ day', 'China', 'Jakarta', 'the Yangtze Fortune', 'December 17', 'the Port of Rotterdam', 'December 11', 'Rail', 'the Bakerloo Line', 'the London Underground', '24-hour', 'Sunday, January 13', '10:30 PM', 'RMT', 'Waterloo & City Lines', 'the London Underground', '24-hour', 'today', 'November 7', 'two', 'November 8', 'London', 'Friday', '13', 'S3', '467', '404', '413', 'K5', '465', '633', '293', 'S1', '470', '463', '418', '406', '24-hour', 'Saturday', 'London Euston', 'Watford Junction', 'Wednesday', 'London Northwestern Railway', 'London Overground', 'Southern', 'Virgin Trains', 'Thursday, September 27', 'London Rd', 'Canal St.', 'the Unite Here Local 11 union', 'one-day', 'four', 'Los Angeles', 'Orange', 'The Westin Bonaventure Hotel', '404 S Figueroa St', 'Los Angeles', '9500 Wilshire Blvd', 'Beverly Hills', 'Hilton Anaheim', '777 W Convention Way', 'Anaheim', 'Sheraton Park Hotel', '1855', 'S Harbor Blvd', 'Anaheim', 'one-day', 'November 13', 'three', 'Los Angeles', 'November 9', 'DEA', 'marijuana', 'Commercial Street', 'LA', 'October 29', '600 pounds', 'Sheriff’s Department', 'the Temple City', 'Glendora', 'FBI', 'Los Angeles County', 'Los Angeles Unified School District', 'United Teachers', 'Los Angeles', 'Wednesday, January 23', 'United Teachers Los Angeles', 'Monday, January 14', 'more than 32,000', 'UTLA', '6.5 percent', 'two', 'City Hall', 'Thursday, January 17', 'December 10', 'Port of Montreal', 'Panama', 'the Straits of Malacca', 'Singapore', 'Wednesday, September 19', 'Onego Haren', 'Vigo', 'December 17, 2018', '9.30 p.m.', 'St. Petersburg', 'December 1', 'La Rochelle', 'December 11', 'the English Channel', 'one', 'M1', 'Sydney Harbour Tunnel', 'High St', 'Macau', 'Tropical Storm Bebinca', 'Wednesday', 'afternoon', 'Hainan Island', 'China', 'Macau', '11:00', 'Wednesday', 'the Meteorological and Geophysical Bureau', 'SMG', 'The Foreign and Commonwealth Office', 'Typhoon Mangkhut', 'Macau', 'Macao', 'Sunday 16 September', 'Typhoon Mangkhut', 'the Philippine Sea', 'at least 20,000', 'Macau', 'Typhoon Mangkhut', 'Macau', 'Typhoon Mangkhut', 'Earlier this week', 'Spain', 'National Police', 'Catalonia', 'Catalonia', 'AP-7', 'about 15 hours', 'Saturday', 'the next day', 'Catalonia', 'Mossos d Esquadra', 'Spanish', 'National Police', 'Article 155', 'Catalonia', 'months', 'the October 1, 2017', 'Elsa Artadi', 'Tuesday', 'Spanish', 'Friday, December 21', 'Barcelona', 'Spain', 'Madrid', 'National Police and Civil Guard', 'Catalonia', 'last Friday', 'August 10', 'the state Department of Transportation', 'Route 495', 'Kennedy Boulevard', 'one', 'summer 2021', 'August 17', 'the New Jersey Turnpike', 'New York City', 'U.S.', 'More than 150,000', 'daily', '80-year-old', 'the Lincoln Tunnel', 'NJ', 'Malaysian', 'China', 'Malaysia', 'Thailand', 'today', '24 October', 'Over 1,000', 'Aman Youyi 2018', 'Malibu', 'the Woolsey Fire', 'Evacuations', 'Mulholland Hwy', 'Ventura', 'Los Angeles County', 'Pacific Coast', 'the Leo Carrillo State Park', 'Mulholland Hwy', 'Westlake Blvd', 'Encinal Canyon Rd', 'Mulholland Hwy', 'Decker Canyon Rd', 'Decker Canyon Rd', 'Pacific Coast', 'Decker School Rd', 'Ventura County', 'Lea Carrillo', 'Newton Canyon Rd', 'S Kanan Dume Rd', 'Newton Mtwy', 'Castro Peak Mtwy', 'Seminole', 'The Malta Union of Teachers', 'one-day', 'Monday', '8 October', \"World Teachers' Day\", '5 October', 'the Education Act', 'three', 'Parliament', 'the Education Ministry', 'the Ministry of Education', 'Floriana', 'Malta', '23:00', 'Monday 26 November', '23:59', 'Tuesday 27 November', 'Maltese', 'Malta', '23:59', 'Monday 17 December', 'Maltese', 'Malta', '23:59', 'Friday 28 September', 'up to 75 kilometres per hour', 'November 15', 'Malta Customs', '37 million', '4', 'Cambodia', 'Libya', 'the Malta Freeport', 'Birzebbuga', 'Maltese', 'EUR 25,000', 'Malta', 'October 22', 'Maltese', 'Erna Oldendorff', 'the Oshima Bridge', 'Yanai City', '12:30 AM', 'October 22', 'Qingdao', 'Kure', '12:20 PM', 'Suo-Oshima', 'Suo-Oshima Island', 'September 1, 2018', 'Alexandria International Container Terminal', 'AICT', 'Alexandria', 'Customs Authority', 'AICT', 'the next couple of days', 'Approximately 7,000', 'Los Angeles County', 'four-day', '7:00 AM', '11/27', 'Service Employees International Union Local 721', '721', 'SEIU', '721', 'Los Angeles County', 'Tianjin Binhai', 'October 28', '17:45', 'the Sinotrans Qianlong Tianjin Dagangku Lubricant Warehouse', '467', 'Anhe Road', 'Zhongtang Town', 'Binhai New Area', 'Tianjin', 'Thai', 'Billie Enterprise Co., Ltd.', '11:30', 'October 15', 'bin', 'Nong Kham', 'Si Racha', 'Chonburi Province', 'Spanish', 'August 30', 'Almargen', 'Spain', 'Madrid', 'Algeciras', 'August 30', 'Spanish', 'Pier', 'the Port of Long Beach', 'Mediterranean Wy', 'Pier T Ave', 'Ten', 'Total Terminals International', 'Ventura Bus Lines', '24-hour', 'Melbourne', 'Friday, October 19', 'Ventura Bus Lines', 'Friday', 'The Patrick Terminal', 'Melbourne', 'about 0.5', 'next year', 'Belgian', 'December 14', 'Belgium', 'one-day', 'Dana', 'Bruges', 'Bombardier', 'Bruges', 'Asco', 'Zaventem', 'Evonik', 'Antwerp', 'Arlanxeo', 'Zwijndrecht', 'Saint Gobain', 'Eupen', 'Procoplast', 'Lontzen', 'GSK', 'Wavre', 'Clabecq', 'SA Power Networks', 'Adelaide', 'Monday', 'Colón Industrial', 'Guadalajara', 'Sunday', 'afternoon', 'Calle 5', 'Calle Francisco de Orellana', 'The National Hurricane Center', 'Tropical Storm Xavier', 'Colima State', 'Saturday', '3 November', 'early next week', 'Colima', 'Jalisco', 'about 600 kilometers', 'Manzanillo', 'up to', '75', '11', 'this morning', '65', '42', 'Middleton St', 'Jawaharlal', 'Nehru Rd', 'November 19', 'the morning of', 'November 19', 'the afternoon of the next day', 'the Port of Rotterdam', 'December 3', 'the Port of Tanjung Pelepas', 'Malaysia', '11 hours', 'this week', 'November 7', 'the Port of Tanjung Pelepas', 'Malaysia', '8 hours', 'this week', 'the Port of Charleston', '35', 'about 7 days', 'Oakland', 'Sunflower Alliance', 'the San Francisco', 'Mission St', '4th St', '12:00 PM', 'Wednesday, September 12', 'the Principles for Responsible Investment', 'the Bank of Montreal', 'Oakland', 'almost 300', '1:30 PM', 'Thursday', 'Hamburg', 'one ton', 'five', 'three', 'roughly US $194,000', 'two pounds', 'marijuana', 'Friday', 'eight', 'at least four', 'Germans', 'one', 'Italian', 'one', 'Pole', 'two', 'One', 'Germans', '39-year-old', 'Hells Angels', 'several months', 'Monday', '441 pounds', 'Hamburg', 'November 1', 'Brazil', 'Hamburg', 'around 4.5 tons', '2017', 'September 18', 'the Mt. Holly', 'New York National Weather Service', 'Western', 'Northern New Jersey', 'several inches', 'Hurricane Florence', '9AM', '7PM', 'September 18', 'I-95', 'September 19', 'New Jersey', 'I-95', 'New Jersey', 'August 31', 'Canada', 'Termont/Viau', '8-10 days', '5-8 days', '10-12 days', '•\\tHalifax: Ceres/Halterm', '5-8 days', 'Delta', '8=10-days', '5-8 days', '3-5 days', '6-8 days', 'Montreal', 'Halifax', 'Vancouver', 'DP World Terminal', 'Patrick Terminal', 'Sydney', 'Sydney', '828', 'August 9-10', 'Auckland v. 829 S', 'August', '16-17', '•\\tSpirit', 'Singapore', '830', 'August 23-24', '831', 'August', '30-31', 'November 5', 'France', '4-hour', 'Le Havre', 'Marseille-Fos', 'the day', 'Port of Santos', 'Dutch', 'Waalhaven', 'Rotterdam', 'tonight', 'at least 10', 'Waalhaven', 'Maasvlakte', 'Rotterdam', 'Monday', 'at least 35', 'AIDAPerla', 'Wilhelminakade', 'Rotterdam', 'Rotterdam', 'Netherlands', 'Chengdu', 'China', 'Kaliningrad', 'Russia', 'first', 'three', 'the beginning of November', 'Rotterdam', 'Chengdu via Kaliningrad', 'the end of the year', 'August 22', '5.7', 'Venezuela', '9:27 AM', 'August 22', '6.3', 'Yaguaraparo', 'Colombia', 'Guyana', 'Trinidad', 'Tobago', 'Grenada', 'St. Lucia', 'Yaguaraparo', 'Sucre', '6.3', 'Cumana', 'Maturin', 'Valencia', 'Caracas', 'Anzoategui', 'Puerto La Cruz', 'Venezuelan', 'Hong Kong', 'China', 'Solid Wastes Forbidden to Import', 'Hong Kong', 'December 31st, 2018', 'a year', 'January 1st, 2019', 'Hong Kong', 'December 31st, 2018', 'first', 'the Waste Disposal Ordinance', 'WDO', 'first', 'Hong Kong', 'Hong Kong', 'Hong Kong Environmental Protection Department', 'November 7', 'Port of Salalah', 'November 3', 'the next 4 weeks', 'November 20', 'Ningbo', 'November 20', 'October 8', 'the National Hurricane Center’s Atlantic', 'several inches', 'up to 30 mph', 'Georgia', 'Hurricane Michael', 'Atlanta', 'Macon', 'Dublin', 'Georgia', 'the Port of Savannah', 'Atlanta', 'Macon', 'Dublin', 'Savannah', 'the Port of Savannah', 'Atlanta', 'Hartsfield Jackson International Airport', 'Ausgrid and Endeavor Energy', 'Sydney', 'the weekend', 'August 28', 'Norwegian', '2AM', 'August 27', 'Humber', 'Kingston', 'Southampton', '3PM', 'August 27', 'The Nordic Sund', '37%', 'Amber', '34.8%', 'the Nordic Sund', 'more than two dozen', 'one', 'New York City', 'nearly half a billion dollars', 'Chinese', 'Vuitton', 'Chanel', 'Thursday', 'August 16', '40-foot', 'U.S.', 'the Port of New York/', 'New Jersey', 'Brooklyn', 'Queens', 'Long Island', 'nine', 'Queens', 'Staten Island', 'Brooklyn', 'China', 'Xi Jinping', 'November 20-21', 'Manila', 'Port of Manila', 'these two days', 'September 17', 'the Hai Yang Shi You', '2002', 'CNOOC', 'Hainan', 'Mangkhut', 'Guangzhou', 'the Port of Beihai', 'Guangzhou', 'Hong Kong', 'Mangkhut', 'December 5', 'the Brazilian Navy', 'Ibama', 'the Alemoa Pier', 'Piacaguera', 'December 2', 'the Port of Santos', 'Pakistani', 'Karachi', 'Churna Island', 'October 24', 'the days', 'Mubbarak', 'Sandpit Beach', 'one', 'several days old', 'the Environmental Protection Agency', 'EPA', 'Balochistan', 'Byco Petroleum Pakistan Limited', 'The Royal Air Force', 'Oman', 'twelve', 'around 35 nautical miles', 'Salalah', '12 October', 'Oman', 'the Arabian Sea', 'Salalah', 'November 30', 'the Civil Guard', 'Operation Burga-Justel', 'San Roque', 'Algeciras', '18', '5', 'Spanish', 'Mediterranean', 'S Santiago', '834', 'the Port of Oakland', 'California', 'October 11', 'Port of Barcelona', 'Spain', 'North American', 'Cap Jackson', '835', 'the following week', 'S Santiago', '834', 'the Port of Oakland', 'United States', 'October 11', 'Port of Barcelona', 'Spain', 'North American', 'Cap Jackson', '835', 'the following week', 'Monte Verde', '081SN', 'the Port of Paranagua', 'Paranagua', 'Port of Santos', 'Monte Verde', 'Port of Cartagena', 'Colombia', 'ETA', 'August 17', 'October 2', 'the Port of Durban', '13:15', 'Rail', '15:00', 'between 80-90km', 'Pier 1', 'the Port of Durban', '06:00', 'October 12', 'the previous day', 'DCT Pier 1', 'the Port of Durban', '22:30', 'October 9', '06:00', 'the next day', 'Pier 1 Container Terminal', 'the Port of Durban', 'November 13', '00:50', 'the next day', 'Container Terminal 1', 'the Port of Durban', '20:15', 'October 2', 'A2', 'D2', 'TTT', 'Pier 2 Container Terminal', '06:10', 'November 26', 'the Dammam Port Marine', '13:12 hours', 'today, October 22', 'the Port Authority', 'December 18', 'the Port of Malta', 'November 26', 'the Port of Kwangyang', 'the evening of', 'November 24', '12-24 hours', 'Oakland International Container Terminal', 'three', 'October 1st to 3rd', 'December 10', 'Virginia', '32,811', 'December 10', 'December 9', '47,000', 'Appalachian Power', 'Dominion', 'Southside Electric', 'Mecklenburg', 'Danville', 'Richmond', 'Tidewater', 'Virginia', 'November 13', 'the National Highway', 'the Linh Trung Ward', 'Thu Duc District', 'Ho Chi Minh City', '08:00', 's Public Authority for Civil Aviation', 'next week', 'India', 'the weekend', 'the Arabian Sea', 'next week', 'Oman', 'October 11-12', 'Yemen', 'Iran', 'Pakistan', 'Oman', 'the Arabian Peninsula', 'One', 'Oman', 'May of this year', 'Salalah International Airport', 'IATA', 'SLL', 'the Port of Salalah', 'Oman', 'the coming days', 'Karachi', 'Friday', 'at least one', 'Motorway', 'Mauripur Road', 'Karachi', 'Wednesday afternoon', 'Mauripur Road', 'August 31', 'the Port Authority of New York', 'New Jersey', 'GCT Bayonne', 'New York', 'Red Hook', 'Maher Terminals', 'East Coast', 'Interport', 'Salson', 'H&M', 'the Labor Day holiday', 'September 3', 'September 4', 'PANYNJ', 'September 3', 'Paradip Port', 'Tropical Cyclone Titli', \"the Transport Workers' Union\", 'Perth', 'metro', 'Fremantle', 'Wangara', 'Nowergup', 'Mandurah', 'Perth', 'Green', 'Transdev', 'Transperth', 'Up to 300', 'the weekend', 'this morning', '19 October', 'the Port Area', 'Manila', '12 Street', 'Railroad Drive', 'MMDA', 'Metro Manila Development Authority', 'Manila', 'Edsa Quezon', 'NB', 'Kamuning Edsa NB', 'West Bond East Avenue', 'Aurora NB', 'Ortigas Ilalim SB', 'Centris', 'Tomas', 'Exit QC', 'Aurora cor', 'CCP', 'Panay Avenue', 'Timog', 'Scout Tobias', 'NB', 'Along Roxas Boulevard', 'Epifanio de', 'Santos Avenue', 'The United States', '7.2', '215 km', 'Davao', 'today', '29 December', '50 km', 'Philippines', '300 km', 'Manila', 'Department of Labor and Employment', 'DOLE', 'Joel Maglunsod', 'Rodrigo Duterte', 'Joel Maglunsod', 'PAGASA', 'Visayas', 'Mindanao', 'Monday', 'evening', 'Samuel', 'the Philippine Area of Responsibility', 'Sunday', 'morning', 'Surigao del Sur', '55kph', 'Caraga, Davao Oriental', 'Compostela Valley', 'Monday', 'Metro Manila', 'October 17', 'Pier 1 Container Terminal', 'the Port of Durban', 'Auto Gate', 'the coming hours', 'Pier 2 Container Terminal', 'the Port of Durban', '03:00', 'October 30', 'Pier 2', '108', '202', '203', 'the Port of Durban', '01.15', 'November 29', '204', '03.00', 'August 15', 'the Port of Shekou', 'the afternoon', 'August 14', 'Tropical Storm Bebinca', '15:00', 'August 15', 'Bebinca', '16 August', 'Vietnam', 'August 15', 'the Port of Yantian', 'August 14', 'Tropical Storm Bebinca', '15:00', 'August 15', 'Bebinca', '16 August', 'Vietnam', 'October 5', 'the Port of Antwerp', 'Belgium', 'the coming days', 'Chinese', 'December 6', '36 tons', 'Huangpu', 'Guangzhou', 'more than 580,000 Yuan', 'USD 84,071', 'EUR 73,906', 'October 2018', '1 to 2 tons', 'Thursday', '16', 'St Kilda Beach', 'Melbourne', '120', 'one', 'Wednesday', 'earlier in the week', '100', 'three', 'two', 'early November', 'between November 1 and March 31', 'St Kilda Beach', 'night', 'US', 'Philadelphia', 'Bucks County', 'New Jersey', 'USD 1.2 million', '1.03 million', 'New Ford Mill Road', 'Falls', 'Adderall', 'Oxycontin', 'Vicodin', 'August 28', '4', 'Callao', 'over 2,000', 'December 13', 'two', 'Torrent Tortuguer', 'Torre de Mateur', 'Barberà del Vallès', 'Barcelona', 'two', 'September 1', 'Victoria', '3', 'AUD 160,000', '98639.33', 'Mount Waverley', 'Laverton', 'New South Wales', 'Queensland', 'Oakland', 'five', 'marijuana', 'Hayward', 'Hayward', 'Wednesday', 'night', 'five', 'the past month', 'the Bay Area', 'October 30', 'Baoshan', 'Baoshan', 'eight', '500 kg', '200,000 yuan', 'EUR', '26,000', 'London', 'Gatwick Airport', 'IATA', 'between December 19 and 21', 'At least 67', '37', 'the three days', '140,000', 'early on the morning', 'December 21', 'Two', 'the evening of', 'December 21', 'Sunday', 'the weekend', 'Sussex Police', 'Monday', 'the weekend', 'two', 'London', 'Drone Dome', 'UK', 'December 21', 'Ben Wallace', 'Gatwick Airport', 'US', '$6.3 million', '5 million', 'US', '63,000', '12,000', 'Crimestoppers', 'UK', 'one kilometer', 'five years', 'Gatwick', 'Civil Guard', '11', 'Catalonia', '37', 'Barcelona', 'Terrassa', 'Santa Coloma de Gramanet', 'Civil Guard', '25', 'Monday', 'Hong Kong', 'Zhuhai', 'China', 'Guangdong', 'Chinese', 'Xi Jinping', 'the morning of', 'Tuesday, October 23rd', 'the following day', 'Over 500', 'more than 20', 'Lantau Island', 'Hong Kong', 'Hong Kong', 'Macau', 'Zhuhai', 'Chinese', 'nine years', 'the coming weeks', 'months', 'Zhuhai', 'Chihuahua', 'over 12,000', 'earlier this week', 'Ciudad Juarez', 'Chihuahua', '463', 'Bud Ligtht', '35', 'Ultra', '9', 'Corona', '4', 'Victoria', 'Estrella', '3 August', '8 August', 'thousands', 'between 24 and 27 July', 'Herrera', 'Los Santos', 'Panama Province', 'the Panamanian Agency of Security', 'AUPSA', 'Panama', '2016', 'AUPSA', 'the Ministry of Development of Agriculture and Livestock (Ministerio de Desarrollo Agropecuario', 'third', 'National Assembly', 'March', 'the Panamanian Chamber of Commerce, Industries and Agriculture (', 'La Camara de Comercio', 'Industrias', 'Agricultura de Panama', '2014', 'coming weeks', 'Pan-American', 'Chiriqui', 'Los Santos', 'a few hours', 'next year', 'first', 'Rotterdam', 'Holland', '31 July', 'Democratic Revolutionary Party', 'Partido Democratico Revolucionario', '2019', 'IHS Markit Foresight', '2018', 'Wednesday', 'Pakistani', 'Karachi s Defense Housing Authority', 'late December 25', '46-year-old', 'Syed Ali Raza Abidi', 'the Muttahida Qaumi Movement', 'MQM', 'the National Assembly', '2013', 'Abidi', 'Pakistan', 'recent years', 'MQM', 'Karachi', 'two', 'the Pak Sarzameen Party', 'MQM', 'Karachi', 'December 23', 'Karachi', 'One', 'August 14', 'Port of Liverpool', 'Felixstowe', 'Archimidis', '831', 'first', 'Port of Felixstowe', 'Maersk Sentosa', '832', 'August 28', 'Liverpool', 'Felixstowe', 'one', 'Felixstowe to Southampton', 'Europe Mediterranean Express', 'Fleixstowe', 'MV Nordautumn', '006S', 'August 25', 'Southampton', 'Fleixstowe', 'November 30', 'Mediterranean', 'Malta', 'Piraeus', 'the weekend', 'October 3', 'Malta', 'the weekend', 'the beginning of the week', 'the next couple of days', 'Mediterranean', 'Malta', 'Piraeus', 'the weekend', 'October 3', 'Piraeus', 'the weekend', 'the beginning of the week', 'the middle of the week', 'the Busan New Container Terminal', '0.5', 'November 28', 'August 21', '72-hour', 'the Port of Gioia Tauro', 'last week', '3.5 days', 'Europe', 'Monday', 'Los Angeles', 'Long Beach', 'three-day', 'Justice', 'Port Drivers', 'the International Brotherhood of Teamsters', 'XPO Logistics', 'NFI Industries', '16', 'Justice', 'the past five years', 'XPO Logistics', 'the Port of Alexandria', '500', 'the Port of Balboa', 'the Department of Labor', 'Thursday', 'Thursday', 'El Papiol', 'the Port of Barcelona', 'B10', 'B-23', 'the Port of Barcelona', 'November 7', 'the Port of Felixstowe', 'between 06:00 and 16:00', 'the Port of Fuzhou', 'the evening of', 'November 1', 'Typhoon Yutu', 'the Port of Hong Kong', 'Typhoon Mangkhut', 'today', 'August 24', 'the Port of Kaohsiung', 'August 23', 'August 13', 'the North Harbor', 'Manila', 'the afternoon', 'August 12', 'Chinese', 'Last week', '3-4 days', 'the Port of Manila', '8', 'Manila North', '21', 'Manila South', 'October 17', 'the Port of Saigon', 'about 1 to 2 days', 'Port of Tianjin', 'November 17', '50', 'November 7', 'the Port of Japan', '1-1.5 days', 'the Port of Tokyo', 'September 30', '13:00 to October 1', '06:40', 'Typhoon Trami', 'around 0.5', 'Valencia', 'today', 'tomorrow', 'today, October 18 and tomorrow, October 19', 'three', 'APM', 'MSC', 'Noatum', 'today', 'Thursday', 'tomorrow', 'the early hours', 'the Port of Virginia', 'Hurricane Florence', 'Norfolk International Terminals', 'NIT', 'Norfolk', 'VA', 'Portsmouth Marine Terminal', 'Portsmouth', 'VA', 'Newport News Marine Terminal', 'NNMT', 'Newport News', 'VA', 'Virginia International Gateway', 'Portsmouth', 'VA', 'Virginia Inland Port', 'Front Royal', 'VA', 'Pinners Point Container Yard', 'Portsmouth', 'VA', 'Richmond Marine Terminal', 'RMT', 'Richmond', 'VA', 'the World Trade Center', 'the Port of Yantian', 'the afternoon', '12:00', '24-hours', '6', 'the Port of Yokohama', 'September 30 to October 1', 'Typhoon Trami', 'around 0.5', 'Pakistani', 'Port Qasim', 'Karachi', 'Italian', 'Augsut', 'Gioia Tauro Port', 'Italy', 'August 14', '09:00', 'August 16', 'Italian General Confederation of Labour', 'Sindacato Unitario Lavoratori', 'Medcenter Container Terminal', 'Contship Italia Group', 'Italian', 'Intelligence', 'Everstream Analytics', '20:00', 'December 12', '20:00', 'December 13', 'December 14', '4 hours', 'between 11:00 and 15:00', '4 hours', 'December 18', 'France', 'Fos-sur-Mer', 'Le Havre', 'Intelligence', 'Everstream Analytics', 'January 17', '24-hour', 'January 21', 'France', 'Fos-sur-Mer', 'Le Havre', 'December 3, 13', '14', '18', 'January 14', 'the Port of Kobe', 'Osaka', 'Japan', 'September 30 to October 1', 'two days', 'XPO Logistics', 'NFI', 'Los Angeles', 'Long Beach', 'three-day', 'Dozens', 'Teamster', 'Harry Bridges', 'I-110', 'Port Drivers', 'Teamsters', 'Pier 1 Container Terminal', 'the Port of Durban', '06:00', 'December 11', 'Maydon Wharf MPT', 'Durban', 'November 15', 'Monday', 'Hurricane Florence', 'the Atlantic Ocean', 'The National Weather Service', 'Florence', 'the Saffir-Simpson Scale', 'the East Coast', 'the United States', 'later this week', 'the East Coast', 'Wednesday night', 'Thursday', 'morning', 'between six and ten inches', 'North Carolina', 'Virginia', 'more than ten inches', 'North Carolina', 'Virginia', 'Florence', 'South Carolina', 'North Carolina', 'Virginia', 'Maryland', 'South Carolina', 'North Carolina', 'Virginia', 'Amtrak', 'the East Coast', 'Wednesday, September 13', 'Hurricane Florence', 'Hurricane Florence', 'Whiskey', 'Monday', 'South Carolina', 'Georgia', 'North Carolina', 'Virginia', 'Maryland', 'Florence', 'Hurricane Florence', 'Risk Center', 'September 16', 'Filipino', 'Princess Vanessa', 'Mangkhut/Ompong at Tanza on the Cavite coast', 'Manila Bay', 'September 15', 'the Princess Vanessa', 'YONG', 'Taichung Port', 'Taiwan', 'the evening', 'December 12', 'September 18', 'Cutler', 'the Port of Durban', 'September 19', '6AM', 'Port Entrances 11 & 12', '1 & 2', 'French', 'December 18', 'Sandouville', 'the Port of Le Havre', 'France', 'A29', 'the Pont de Normandie', 'the Boulevard Churchill', 'Total Gonfreville', 'The Puerto Rico Teachers Federation', 'FMPR', 'Federación de Maestros de Puerto Rico', 'one-day', 'today', '15 August', 'Plaza Colón', 'San Juan', 'La Fortaleza', 'Wednesday', '22', 'the Land, Infrastructure, Transport and Tourism Ministry', 'six', 'Japan Railways', '16', 'Tokyo', 'Osaka', 'the coming days', 'Japan', 'Dozens', 'Typhoon', 'Trami', 'Typhoon Jebi', 'the past two months', 'Japan', 'December 10', '6-days', 'the Port of ', 'Vancouver', 'October 9', 'the Receita Federal', '463 kilograms', 'Le Havre', 'the Port of Santos', '36th', 'this year', 'Santos', 'the Port of Santos', 'November 3 and 30', 'the Port of Salalah', 'Oman', 'Asia', 'Europe', '14 August', 'the Oil Workers Union', 'USO', 'USO', '15%', 'an additional 10%', 'six months', '60%', 'an additional 30%', 'Colombian', 'Portfolio', 'around USD680 million', 'more than 3,500', 'Ecopetrol', 'around 35%', 'An additional 24,000', 'Colombian', 'Dinero', '2 August', 'USO', 'USO', 'approximately 18,000', 'USO', '2004', '2006', 'up to 20%', '88.49%', 'the Previous Juan Manuel Santos', 'Alberto Carrasquilla', 'Finance', 'Ivan Duque', 'â\\x80\\x93', 'â\\x80\\x93', 'August', 'September', 'last a few days', 'IHS Markit Foresight', '2018', 'Jawaharlal Nehru Port Terminal', 'Nhavasheva', '05:00 to 11:00', '17:00 to 23:00 of the day', 'August 16', 'September 15', 'the coming days', 'Monday', 'Omani', 'the weekend', 'Dhofar', 'Al Wusta', 'Sunday', 'Salalah', 'Dhofar', 'Monday', 'Yemen', 'Luban', '50', 'Monday', 'Ghaida', 'al-Mahra', 'Ghaida', 'Luban', 'Sunday', 'Oman', 'Yemen', 'Monday morning', 'the coming days', 'Oman', 'Yemen', 'the Port of Yantian', 'Typhoon Mangkhut', 'up to 5 hours', 'the beginning of October 2018', 'Olivia Maersk', '832S', 'Sydney', 'Melbourne', 'DP World Terminal', 'Melbourne', 'Maersk Inverness', 'Departure\\t Revised Arrival/Departure\\nSydney\\t September', 'September 18', '20', 'Melbourne ', 'September 17', 'September 15', '17', 'ANL Geelong V094N/095S', 'Su Zhou Hao', 'October 2', 'Shanghai', '2-days', 'Melbourne', 'ETA', 'October 17', 'October 19', 'Port of Sydney ', 'ETA', 'October 20', 'October 22', 'Port of Brisbane ', 'October 23', 'ETD', 'October 25', 'ANL Geelong V094N/095S', 'Su Zhou Hao', 'October 2', 'Shanghai', '2-days', 'Melbourne', 'ETA', 'October 17', 'October 19', 'Port of Sydney ETA', 'October 20', 'October 22', 'Port of Brisbane ', 'October 23', 'ETD', 'October 25', 'ANL Geelong V094N/095S', 'Su Zhou Hao', 'October 2', 'Shanghai', '2-days', 'October 17', 'October 19', 'Port of Sydney ', 'ETA', 'October 20', 'October 22', 'Port of Brisbane ETA', 'October 23', 'ETD', 'October 25', '51', 'Richards Bay', 'Mexico', 'Mexico', 'Sonora', 'Puebla', 'Mexico', 'hundreds of millions of dollars', 'annually', 'Mexico', 'recent years', 'the last few months', 'Mexico', 'Mexico', '2018', 'January to September 2018', 'Mexico', 'Railway Transport Regulatory Agency', '2,115', '148 percent', '850', '2017', '22', '54', 'a year', 'five', 'Puebla', '358', 'Guanajuato', '181', 'Jalisco', '178', 'Coahuila', '177', 'Sonora', '158', 'One', 'Mexico', 'Tlaxcala', 'Veracruz', 'the Mexico City-Puebla-Veracruz', 'the Mexico City-Saltillo', 'the Mexiquense Beltway', 'Polyethylene', 'Mexico', '2017', 'the Etileno XXI Petrochemical Complex', 'Coatzacoalcos', 'Veracruz', 'USD 2.5 million', '2.2 million', 'This year', 'February 2', 'May 5', '148 tons', 'approximately USD 195,000', 'Apizaco', '236 tons', 'approximately USD 311,000', 'EUR', '274,000', 'Tamariz', 'Tezuapan', 'San Antonio', 'Soledad', 'Puebla', 'two', 'EUR', 'EUR', '1.31', 'Mexico', 'Mexico', 'SAINT VINCENT', 'GRENADINES', 'Container Ship', 'West Scent', 'August 17, 2018', 'Chittagong', 'the Sandwip Channel', 'Bangladesh', 'second', 'the same day', 'Hong Kong', 'Container Ship', 'August 17, 2018', 'Chittagong', 'the Sandwip Channel', 'Bangladesh', 'second', 'the same day', 'Liberia', 'Northern Defender', 'the Batangas Bay', 'Batangas', 'Philippines', 'Sunday, November 4', '01:00 SGT 2018', 'Malta', 'Searacer', 'Batangas', 'Philippines', 'Wednesday, October 21', '01:00 SGT 2018', 'Panama', 'LPG', 'Lotus Gas', 'the Batangas Bay', 'Batangas', 'Philippines', 'Wednesday, October 24', '22:00 SGT 2018', 'Isle of Man', 'British Century', 'the Batangas Bay', 'Batangas', 'Philippines', 'Friday, November 2', 'up to', '2,500', 'Pra a Santos Andrade', 'Rua Jo', 'Negr', 'Rua Alfredo Bufren', '30th', '1988', 'Loto-Quebec', 'four-day', '7:00 AM', 'August 20', 'Loto-Quebec', 'Rue Sherbrooke O', 'Rue Aylmer', 'Thursday', 'August 16', 'Montreal', 'Friday', 'Russian', 'Saint Petersburg', 'Friday', 'evening', '21 December', 'Khimicheskiy Pereulok', 'Rotterdam', 'Netherlands', 'Chengdu', 'China', 'Kaliningrad', 'Russia', 'first', 'three', 'the beginning of November', '40', 'Rotterdam', 'Chengdu via Kaliningrad', 'the end of the year', 'this evening', 'Saint Petersburg', 'Russian', 'early this morning', 'the Frunzensky District of Saint Petersburg', 'Obukhovskoy', 'the South Korean Coast Guard', 'August 28', 'Russian', 'Palladiy', 'the Korea Strait', 'Port of Busan', 'Daltrans Company', '15', '05:40', 'June', 'Busan', 'five months', 'Salalah Port', 'December 31', 'Sao Paulo Military', '11258.48', 'USD 12884.50', 'Morro', 'Pacheco', 'the morning', 'December 31', 'Brazil', 'Santos', 'the Hyundai Heavy Industries', 'Sapyeong-ro', 'Bugok', 'four-hour', 'Wednesday', 'afternoon', 'the Ulsan City Hall', 'Jungang', '213', 'Jungang', 'Dammam', 'Saturday', 'night', 'Al Khalidiyyah', 'the Al-Khobar Highway', 'November 26', 'the Savannah River', 'the Port of Savannah', 'November 25', 'shortly before noon', 'Slight', 'Nero', '30', 'Antwerp', 'December 29', 'Scheldt River', 'July 10', 'the Port of Le Havre', 'the Port of Le Havre', 'the summer', 'June 6', 'Kai Tak Airport', 'Hong Kong', 'approximately 6 months', 'WGS', '84', 'Datum', '22 deg', '18.795’N / 114', '12.264’E', '22 deg', '18.771’N', '12.238’E', '22 deg', '18.846’N / 114', '12.154’E', '22 deg', '18.870’N / 114', '12.180’E', 'The working hours', '07:00 to 19:00', 'Sundays', 'Monday', 'Canada Post', 'the Canadian Union of Postal Workers', 'Monday', 'Victoria', 'Windsor, Halifax', 'Edmonton', 'Tuesday', 'the Greater Toronto Area', 'Scarborough', 'the Greater Toronto Area', 'Canada', 'The Gateway Postal Facility', 'Mississauga', 'approximately 70 percent', 'Canada', 'Canada Post', 'Canada Post', 'Canada', 'daily', '24-hour', 'Canada Post', 'The Canadian Federation of Independent Business', 'Canada Post', 'Singapore', '33rd', 'annual', 'the Association of Southeast Asian Nations', 'ASEAN', 'November 13-15, 2018', 'the Eastern Anchorage', 'Alpha', 'Eastern Holding', 'Eastern', 'Thursday', 'Sri Lankan', 'Maithripala Sirisena', 'Indian', 'late September', 'Sirisena', 'India', 'Sirisena', 'Sirisena', 'India', 'Sirisena', 'India', 'Chinese', 'Colombo International Container Terminal', 'India', 'Sirisena', 'India', 'two', 'Indian', 'the early hours', 'Cartagena', 'Bol', 'Nelson Mandela', 'the National Liberation Army', 'One', 'three', '16', 'Colombia', 'early 2017', 'Bogot', '23', 'two', 'one', 'ELN', 'Cartagena', 'Cartagena', 'Tuesday', 'Inspector General of Police Mohammad Javed Patwary', 'Eid al-Adha', 'Wednesday, August 22', 'Dhaka', 'Chittagong', 'Sylhet', 'Barisal', 'Rajshahi', 'Rangpur', 'Bangladesh', 'Sholakia', 'Kishoreganj', 'Dhaka Division', 'three', '2016', 'Islamist', 'Eid al-Fitr', 'Eid al-Adha', 'JMB', 'JMB', 'last week', 'Dhaka', 'four', 'JMB', 'September 19', 'BNSF', 'the Klamath Falls', 'September 18', 'Klamath Falls', 'Vancouver', 'CA', 'Altamont', 'Anderson Road', 'Washburn Way', 'Altamont Drive', 'Lebanon', 'BNSF', 'Oregon', 'San José', 'this morning', 'the Legislative Assembly', '11 in the morning', 'El Higuerón', 'Pavas', 'about 20', 'Mexico', 'General Cañas', 'several hours', 'Paseo Colón', 'San José', 'all morning', 'Max Peralta', 'Cartago', 'the National University (UNA', 'Heredia', 'Nicoya', 'Guanacaste', 'Route 2', 'Interamericana Norte', '135', 'Pérez Zeledón', 'the Gilguero River', 'several hours', 'Intelligence', 'Everstream Analytics', 'up to 10 days', 'Brest-Malaszewicze', 'Europe', 'China', 'Hamburg', 'Tilburg', 'Duisburg', 'Lodz', 'Up to 8', 'daily', 'Brest', '2', 'the Port of Durban', 'December 27', '23:10', 'the same day', 'Pier 2', '19:30', '20:35', 'Pier 1 Container Terminal', 'the Port of Durban', 'November 13', '18:00', 'Pier 1 Container Terminal', 'the Port of Duran', '16:25', 'September 12', 'Pier 1 Container Terminal', 'Port of Durban', '10:15', 'October 29', 'the next day', '04:45', 'December 7', 'the Port of Fuzhou', 'the afternoon of', 'December 7', 'December 9', 'December 7', 'the Port of Xiamen', 'the afternoon', 'December 7', 'December 9', 'Port of Gdansk', 'the morning of', 'November 29', 'the next day', 'December 6', 'Port of Felixstowe', 'the morning', 'December 7', 'Port of Rotterdam', 'the afternoon of', 'November 28', 'the next day', 'November 26', 'the Port of Sydney', 'sometime this week', 'November 26-30', 'December 14', 'Port of Adelaide', 'the next day', 'afternoon', 'December 14', 'the Port of Brisbane', 'the day', 'an estimated 53,000', 'Shanghai', 'Tropical Storm Rumbia', 'Hengsha', 'Tropical Storm Kong-Rey', 'Monday, September 10, 2018', 'Hyundai Heavy Industries Co.', 'this week', 'Ulsan', 'about 410 kilometers', 'Seoul', 'four hours', 'Wednesday', 'as many as 150', 'Seoul', 'December 3', 'the Port of Tianijn', 'China', 'the morning of', 'December 3', 'December 3', 'the Houston Ship Channel', 'the Port of Houston', 'United States', 'Loading', 'Compagnie Tunisienne de Navigation', 'September 3 to 4', 'Tunisia', 'The Compagnie Tunisienne de Navigation', 'Tunisian', 'Tunisia', 'Barcelona', 'Spain', 'Livorno', 'Italy', 'Bangladesh', 'CMA CGM', 'up to USD 200', '173', '20', 'August 20', 'US', 'Chittagong', '4 days', '3 days', 'German', 'this week', 'Dresden', 'the River Elbe', 'the Port of Hamburg', 'Prague', 'the Czech Republic', 'December 10', 'the Port of Long Beach', 'October 3', 'Sierra Leone', 'Ying Hai', 'the morning', 'October 3', 'the Penghu Archipelago', 'the Taiwan Strait', 'October 2', 'The Ying Hai', 'Kaohsiung', 'Strait', 'Yang Hai', 'the Taiwan Strait', 'November 22', 'the Port of Long Beach', 'up to 4 days', 'the Ayer Rajah Expressway', 'Jurong Port Road', 'the Ayer Rajah Expressway', 'Singaporean', 'the Pan Island Expressway', 'the East Coast Parkway', 'the Pan Island Expressway', 'Singaporean', 'Singaporean', 'the Ayer Rajah Expressway', 'Jurong Port Road', 'the Ayer Rajah Expressway', 'the Land Transport Authority', 'East Coast Park', 'the Downtown Core', 'Kallang', 'this morning', 'Rochor Road', 'the National Union of Metalworkers of South Africa', 'NUMSA', 'Toyota', 'South Africa', 'NUMSA', 'NUMSA', 'Durban', 'Toyota', 'Toyota', 'Prospecton', 'Durban', 'five weeks', 'the North Coast', 'Durban', 'Monday 22 October', 'Passenger Rail Agency', 'South Africa', 'PRASA', 'the North Coast', 'the five weeks', 'Tropical Storm Kong-Rey', 'South Korea', 'Two', 'one', '1,447', '500', 'Busan', 'Yeongdeok', 'As many as 2,209', 'GM Korea', 'two', 'four-hour', 'South Korea', 'Wednesday, December 19', 'Approximately 11,000', 'the Korean Metal Workers Union', 'half', 'four hours', '11:40 AM', 'half', 'four hours', '8:20 PM', 'Bupyeong', 'Incheon', 'Changwon', 'South Gyeongsang', 'GM', 'South Korea', 'Hyundai Heavy Industries', 'Ulsan City Hall', '18 September', 'between 13:00 and 17:00', '12 September', '500', 'Tuesday', 'Korean', \"Hyundai Heavy Industries'\", '12 September', 'Ulsan', 'four hours', 'Wednesday', 'Seoul', 'later this week', 'Ulsan Port', 'Seoknam', \"Incheon's Seo District\", 'Friday', 'afternoon', 'Russian', 'South Korean', 'the Port of Busan', 'the United States', 'the United Nations', 'UN', 'North Korea', 'Busan', 'mid-August', 'September', 'South Korean', 'UN Security Council', 'South-Central Virginia', 'Storm Michael', 'September 11', 'Hurricane Florence', 'the next 72 hours', 'National Hurricane Center', 'US Coast Guard', 'Wilmington', 'NC', 'Charleston', 'SC', '6PM', 'September 12', 'Wilmington', 'September 10', 'September 11', 'two', 'Charleston', 'The Ports of Norfolk', 'VA', 'Baltimore', 'MD', 'September 12', '6AM', 'Norfolk', 'September 11', '11:59PM', 'two', 'Baltimore', 'Norfolk', 'September 11', '11:59 PM', 'Baltimore', 'Wilmington', 'Charleston', 'the Ports of Philadelphia', 'Savannah', 'Philadelphia', 'Baltimore', 'Norfolk', 'Wilmington', 'Charleston', 'Savannah', 'Hurricane Florence', 'Guangdong', 'Guanxi', 'Typhoon Mangkhut', 'Approximately 40,000', 'Zhanjiang', 'Maoming', 'more than 3,700', 'Guangdong', 'Around 1,000', 'Macau', '1,500', 'Hong Kong', 'Macau', 'Hong Kong', 'Guangdong', 'Hainan', 'MTR', 'Hong Kong', 'Typhoon Mangkhut', 'South Western Railway', 'RMT', '24-hour', '8:00 PM', 'Friday, December 21', 'The Central Line', 'the Waterloo & City Line', 'the London Underground', 'England', 'London', 'England', 'South Western Railway', 'Alton', 'Basingstoke', 'Woking', 'London Waterloo', 'Bristol Temple Meads and Salisbury', 'London Waterloo', 'Portsmouth Harbour', 'London Waterloo', 'Guildford/Basingstoke\\nWeymouth', 'Bournemouth', 'Southampton', 'London Waterloo', 'London Waterloo\\nGuildford', 'London', \"Epsom/Stoke d'Abernon\\n\\n\", '4:00 PM', 'Post-Tropical Cyclone Michael', 'Virginia', 'the National Weather Service', 'Northam', 'Blacksburg', 'Danville', 'Lynchburg', 'Farmville', 'over 1,500', '50', 'Salem', 'Danville', 'October 13', 'Charlotte County', 'Virginia', 'six', 'five', 'Virginia', 'The Dan River', 'South Boston', 'the Meherrin River', 'Emphoria', 'The Nottoway River', 'Stony Creek', 'noon', 'Tuesday, October 16', 'Virginia Beach', 'Florence', '1800', 'Horn Point Rd', '1200', 'Bayshore \\n- Pleasant Ridge Rd', 'Muddy Creek Rd\\n- Muddy Creek Rd', 'Neck Rd', 'Nanneys Creek Rd\\n- Nanneys Creek Rd', 'Neck Rd', 'Mill Landing Rd', 'Ashville Bridge Creek Educational Center Access', 'Ferry Rd', 'Anne Rd', 'West Landing', 'Anne Rd', 'North Landing Bridge', 'Spanish', 'Friday', 'morning', 'Barcelona', 'Palau al Real', 'early this morning', 'Ca La Tava', 'Facultad de Fisica', 'Universidad de Barcelona', 'Spanish', 'Barcelona Metro', '24-hour', '06:00', '31 December', 'Catalonia', 'Girona', \"Terres de l'Ebre\", 'Thursday', 'this morning', '40 litres per square meter', '30 minutes', 'Sant Cugat del Vallès', 'Barcelona', 'Fogars', 'Girona', 'the Observatori Fabra', 'Barcelona', 'Mas Baberans', 'Thursday', 'Barcelona', 'Catalonia', '20 and 21 December', 'the morning', 'the day', 'Spanish', 'Barcelona', 'Barcelona', 'Barcelona', 'Barcelona', 'Spain', 'Lyon', 'France', 'One', 'Zaragoza', 'Madrid', 'Pamplona', 'Miranda de Ebro', 'Tarragona', 'Burgos', 'Spanish', 'hundreds', 'the Catalan Institute of Health', 'Institut Català de la Salut', 'Barcelona', 'Monday 26 November', 'the Metges de Catalunya', 'CGT', 'Gran Via de les', 'Corts Catalanes', 'Spanish', 'Spanish', 'dozens', 'this afternoon', 'Valencia', 'Calle Colón de Valencia', '7 September', 'two', 'Thursday', 'morning', 'Teruel', 'Mallorca', 'Granada', 'Alicante', 'Malaga', 'Tarragona', 'Valencia', 'today', '31 December', '21:00', \"New Year's Eve\", 'night', '50-60 percent', 'Catalan', 'Opium', 'Barcelona', 'Monday', 'morning', 'Spanish', 'the South Pier', 'the Port of Barcelona', 'Wednesday morning', 'the Ronda Litoral', 'Barcelona City Council', 'The Transport Association of the Port of Barcelona', 'Sintraport', 'last week', 'the Ronda Litoral', 'Customs', 'Port of Long Beach', 'California', '23', '11', 'Mercedes-Benz GLS 450 and 12 Land', 'China', 'EUR', '1,662,266', 'Dalian', 'the afternoon of', 'November 8 to the next day', 'the Port of Gwangyang', 'the evening of', 'November 8 to the next day', 'morning', 'November 27', 'the Port of Dammam', '04:50', '10:30', 'the same day', 'October 22', 'Avenida Paulo VI', 'Salvador', 'between October 21 and 22', 'Avenida ACM', 'Paz', 'Avenida Centenario', 'the Bahia de Todos', 'Santos', 'Salvador', 'Manzanillo', 'Monday, September 3, 2018 afternoon', 'Contecon', 'the Port of Durban', 'December 9, 10', '12', '13', 'Hualien Port', 'Taichung Port', 'Kaohsiung Port', 'Taiwan', 'the midnight of December 7 to the evening', 'the next day', 'ETA', 'December 11', 'Port Adelaide', 'December 10', 'the Port of Felixstowe', 'December 6', 'December 7 and 8', 'Port of Rotterdam', 'Port of Dalian', 'the period of', '02:00 to 14:00', 'November 16', 'the evening', 'December 27', 'the next day', 'evening', 'the Port of Qingdao', 'around 0.5', 'the Red Sea', 'November 30', 'November 2', 'Barcelona', 'the Port of Barcelona', 'September 28', 'Typhoon Trami', 'the next 3 days', 'Waigaoqiao', 'Shanghai', 'China', 'night', 'the coming 3 days', '12 hours', 'next week', 'August 21', 'the Port of Kobe', 'Japan', 'the afternoon of August 22', '48 hours', 'August 21', 'the Port of Kwangyang', 'South Korea', 'August 22', '24 hours', 'August 21', 'the Port of Nagoya', 'Japan', 'the afternoon of August 22', '48 hours', 'November 26', 'South Africa', 'between November 27-29', 'the Port of Durban', 'November 26-28', 'Port Elizabeth', 'Coega', 'December 21', 'South Africa', 'between November December 19 and 23', 'the Port of Durban', 'the Port of Coega', 'the Port of Cape Town', 'November 22', 'South Africa', 'between November 20 and 24', 'the Port of Durban', 'Port Elizabeth', 'Coega', 'November 13', 'French', 'December 13', 'Le Havre', 'France', 'the Lycee Porte Oceane', 'the Lycee Fracoise de Grace', 'the Lycee Francois', 'the Lycee Jules Siegfried', 'the day', 'Ausgrid', 'Sydney', 'the Sydney Harbour Tunnel', 'around 1,400', 'Ausgrid', 'Sydney', 'Pyrmont', 'Haymarket', 'December 6', 'the Port of Salalah', 'the next 4 to 6 weeks', 'October 16', 'the Yantian International Container Terminals', '1 hour', '03:00 to 04:00', 'October 17', 'Taicang Port', 'the Yangtze River', 'Jiangsu', 'Sheng Province', 'Shanghai', 'Hua Yuan 9999', 'Pu Hui 1', 'Monday', 'evening', 'Approximately 115', 'Four', 'four', 'Thursday', 'Taiwanese', 'Shen Jong-chin', 'Taipei', 'the United States', 'Shin', 'the same day', 'Trump', 'Brazil', 'South Korea', 'Argentina', 'Argentina', 'Taiwan', 'Europe', 'Southeast Asia', 'US', 'US', 'Taiwan', 'third', '2017', 'Taiwan', 'the Central Weather Bureau', 'CWB', '6.0', '100km', 'Hualien County', '31.3km', 'Yilan County', 'New Taipei City', 'Taichung City', 'The United States', 'The Central Weather Bureau', 'Typhoon Trami', 'Taiwan', 'Tuesday', 'Trami', 'China', 'Japan', 'Thursday', 'Keelung', 'Taiwan', 'Greater Taipei', 'Yilan', 'the next two days', 'Taiwan', 'The Central Weather Bureau', 'Kaohsiung City', 'Pingtung County', 'Hengchun Peninsula', 'this morning', 'the night of 28 August', 'Kaohsiung City', 'this morning', 'Rockfall', 'November 3', 'Taiwanese', 'Kinshing', 'two', 'Taiwanese', 'Der Yun', 'Japanese', 'Setsu Maru', 'between 8:50', '9 AM', 'November 3', 'Der Yun', 'Setsu Maru', 'Kaohsiung', 'two', 'The Der Yun', '42%', '34%', 'the Greater Tamil Nadu Packaged Drinking Water Manufacturers Association (TPDWMA', 'Tamil Nadu', 'Wednesday', 'Approximately 1,542', 'Tamil Nadu', 'Tuesday', 'Chennai', 'several hours', 'Tuesday, October 16', 'the Marine Area of Piraeus Anchorage', 'Saturday, September 29', 'Erato', '18', 'Greek', 'Liberian', '32', 'Piraeus', 'Eastern Glory', 'Indonesian', 'September 4', 'Batam Island', 'Singapore Strait', 'Batam', 'Tanjung Pelepas', 'Malaysia', 'August 13', 'Santay Island', 'Guayaquil', 'the evening of', 'August 11', 'Adelca', 'Duran', 'German', 'Loreley', 'the Rhine River', 'Germany', 'October 9', 'several hours', 'Antwerp', 'Ludwigshafen', 'At least six', 'hundreds', 'Thursday 20 September', 'Lake Victoria', 'MV Nyerere', 'Ukara Island', 'Ukora Island', 'approximately 65 kilometres', 'Mwanza', 'more than 400', 'Bugolora', 'Ukara Island', 'Washington', 'Washington', 'Evergreen', 'Vancouver', 'Ridgefield', 'Hockinson', 'Battle Ground', 'Longview', 'the school year', 'approximately 78,000', 'Seattle', 'the school year', 'Seattle Public Schools', 'Wednesday, September 5', 'an additional $1 billion', 'this year', 'two', 'The Washington Public Employment Relations Commission', 'PERC', '27', 'July 1', '20', 'PERC', 'one', 'Mediterranean Pacific Service', 'Genoa', 'Italy', 'Voltri Terminal Europa S.P.A.', 'Genoa Port Terminal GPT', 'Cap Jervis', 'VTE Genoa', 'October 17', 'first', 'GPT', 'Dusseldorf Express', 'ETA', 'October 24', 'November 2', 'the Port of Vancouver', 'up to 5 days', 'the past days', 'Container Terminal 1', 'the Port of Durban', 'October 5', '06:00-07:00', '•', '14:00-15:00', 'MV COSCO Shipping Thames', '6E', 'the Port of Singapore', 'August 24', 'Tuesday', 'the Manila Police District', '4,000', 'the Manila North Cemetery', 'the Manila South Cemetery', 'the La Loma Cemetery', 'Undas', 'Thursday, November 1 and Friday, November 2', 'Saturday, November 3', 'Saturday', 'the Metropolitan Manila Development Authority', '14,000', 'Calabarzon', 'Mimaropa', 'over 4,000', 'Soccsksargen', 'Christian', 'Filipinos', 'around two million', 'Manila', 'last year', 'The Philippine National Police (PNP', 'Undas', 'this year', 'Undas', 'Islamist', 'Christian', 'three', 'Ishigaki', 'Japan', 'Okinawa Prefecture', 'Nov 9', 'Malaysia Kalimantan', 'Hannan Japan', 'Ishigaki', 'Tokyo', 'three', 'August 16', 'Hua Run Dian Li', 'the Ning Hua 501', 'Phoenix', 'the Yangtze River', '7:40PM', 'August 13', '302nd', 'the Hua Run Dian Li', '8', 'Nanjing', 'August 15', 'August 30', 'two', '40 foot', 'the Jalipa-Puerto', 'Manzanillo', '7PM', 'August 30', 'Pacific sea', 'Mexico', 'Manzanillo', 'August 18 to September 2', 'Indonesia', '18th', 'Asian Games', 'pan-Asian', 'Jakarta', 'Palembang', 'Jakarta', '17,000', 'more than 100,000', '42', '20', 'Gelora Bung Karno', 'Jakarta', 'Jakarta Convention Centre', 'the International Expo', 'North', 'East', 'South', 'Jakarta', 'Palembang', 'the Jakabaring Sport City', 'Bumi Sriwijaya Stadium', 'Soekarno Hatta International Airport', 'Mahmud Badaruddin II International Airport', 'PLM', 'Jakarta', 'Palembang', 'Jakarta', 'July 2', 'July 31', 'August 1', 'September 2', 'Group III', 'IV', 'hours', 'Jakarta', 'August 18 to September 2', 'the operating hours', 'between 06:00 to 17:00', '•\\tPintu', 'Tol Angke 2\\n•', '2', 'Tol Taman Mini 1', 'between 12:00 to 21:00', '•\\tPintu', 'Tol Angke 1\\n•', '1', 'Tol Taman Mini', 'the Kebon Bawang', 'between 22:00 to 05:00', 'the Tanjung Priok Port', 'the Inner Circle', 'the Rorotan Toll Gate', 'Cakung', 'the Outer Ring Road', 'around 60,000', 'the Asian Games', 'night', 'Indonesia', 'the Asian Games', 'August 21', 'Thane city', 'Mumbai', 'Jawaharlal Nehru Port Trust', 'JNPT', 'August 9', 'the Mumbra-Kausa', 'Container', 'India', 'Nhava Sheva International Container Terminal', 'Nhava Sheva', 'NSIGT', 'a few hours', 'India', 'CFS', '05:00 to 11:00 and from 17:00 to 23:00', 'daily', 'August 16', 'one month', 'PUB', 'This week', '8-10 hours', 'Scotland', 'October 16', 'two hours', '13:30', 'the same day', 'Victoria', 'east coast', 'August 28', 'the Laguna de Cuyutlan', 'Manzanillo', 'Ferromex', 'Ferromex', 'Manzanillo', 'MBTA', 'Waltham', 'MA', 'Authority', '8 AM', 'November 27', 'up to 40 minutes', 'Fitchburg', 'the Providence & Worcester', 'Pan Am', 'New York', 'Maine', 'Waltham', 'July 11', 'summer', '5', '3', 'Mediterranean', 'Hapag Lloyd', 'the Bilbao Bridge', 'Salerno', 'Savannah', 'September 6 to September 27', 'the ZIM Luanda', 'Piraeus', 'Savannah', 'August 28 to September 23', 'Valencia', 'September 4', 'the Livorno Express', 'Cagliari', 'Montreal', 'August 31 to September 21', 'the S Santiago', 'Cagliari', 'New Orleans', 'September 4 to October 7', 'the Rotterdam Express', 'Cagliari', 'Vancouver', 'July 15 to August 23', 'Hapag Lloyd', 'Mediterranean', 'Monday', 'the Bangladesh Road Transport Workers Federation', 'November', 'Sunday and Tuesday', 'Chittagong Port', '21 days', 'Parliament', 'next year', 'Bangladesh', 'August 14', 'Jalisco', 'Mexican', 'the Port of Manzanillo', 'Ciudad Guzman', 'Los Altos de Jalisco', 'Camara', 'Tamaulipas', 'Oaxaca', 'Puebla', 'the Arco Norte', 'Jalisco', 'August 17', 'Pier 1 Container Terminal', 'the Port of Durban', 'Pier 2 Container Terminal', 'September 20', '108', 'this morning', 'the Victoria - Rosario Viaduct', 'a few minutes', 'AFIP', 'October 15', 'Bayhead', 'the Port of Durban', 'Piers 1 & 2', 'M4', 'Bayhead Road', 'Bayhead', 'Port of Durban', 'the coming hours', 'Antwerp', 'Belgian', 'August 21', 'Waaslandhaven', 'Antwerp', 'Belgium', 'August 16', 'August 22', 'two', 'dawn', 'August 22', 'Avenida Ayrton Senna', 'Parque Sao Joao', 'Parana', 'Paranagua', 'Parana Military Police', 'midnight', 'Paranagua', 'South', 'Brazil', 'Santos', 'Paranagua', 'October 17', 'USD 100,000', '700', 'Abtao Avenue', 'La Victoria', 'Lima', 'Huaraz', 'several hours', 'December 14', 'the Port of San Antonio', 'December 10', 'the Presidente Dutra Highway', 'the Port of Santos', 'Sao Paulo', 'Paraiba', 'SP', 'the Zona da Mata', 'MG', 'Supreme Federal Tribunal', 'December 31', 'the Port of Santos', 'November 28', 'Sindicam Ourinhos', 'November 29', 'Cutrale', 'Louis Dreyfus', 'CitroSuco', 'August', 'May', 'December 31', 'Michel Temer', 'Jair Bolsonaro', 'October 29', 'CNT', 'Sindicam Santos', 'Brazil', 'Sao Paulo', 'May 21 through 31', 'October 12', 'Tunisian', 'Ulysse', 'Cypriot', '9:30 PM', 'October 11', 'October 8', '9 AM', 'Corsican', '600 cubic meters', '200 cubic meters', 'Ulysse', 'Virginia', 'CMA CGM Norma', 'Yusheng366', 'the early morning', 'December 24', 'Pearl River', 'Norma', 'Nansha Port', 'Singapore', 'Norma', 'December 26', 'October 9', 'Panamanian', 'Bosphorus King', 'Liberian', 'Rotterdam', 'Yenikapi', 'the Marmara Sea', 'Istanbul', 'Haifa', 'Port Kavkaz', 'the Bosphorus King', 'Ukraine', 'Spain', 'the Bosphorus King', '3PM', 'October 9', 'two', '$7 million', 'EUR', '4.3 million', 'Sydney', 'April of 2018', 'two', 'today, Tuesday, September 4, 2018', 'Ballantrae Drive', 'St Andrews', 'Merrylands Road at Merrylands', 'about 1550', 'two', 'Toyota', 'Hilux', 'Mexican', 'September 11', 'two', 'Manzanillo', 'Mexico', 'August 22', 'two', 'South Korean', 'Hanyu Korea', 'Samjin Lucky 3', 'Busan', 'August 20 and 18', 'two', 'two', 'August 28', 'the Hanyu Korea', 'Samjin Lucky', '3', 'September 4', 'at least two', 'Osaka', 'Typhoon Jebi', 'Osaka Bay', 'Japanese', 'Houn Mari', 'around 12PM', 'September 4', 'Osaka International Airport', '6PM', 'kerosene', 'Japanese', 'Kaiyu 2', 'Osaka', 'Osaka', 'two', 'August 13', 'Dubai', 'Jebel', 'EGA', 'EGA', 'Jebel Ali', '1m tons', 'MARINA', 'Trami', 'Kawasaki', 'Greater Tokyo', 'Tokyo', 'October 1', '12', 'September 28', 'Typhoon Trami', 'Chinese', '1-1.5 days', 'next week', 'Monday', 'the U.S. Embassy', 'The Manila District Traffic Enforcement Unit', 'the Philippine National Police', 'the U.S. Embassy', 'Xi Jinping', 'the People s Republic of China', 'November 20-21, 2018', 'U.S.', 'the U.S. Embassy', 'Roxas Boulevard', 'Manila', 'the U.S. Embassy', 'Manila', 'Xi Jinping', 'more than 5,000', 'Xi Jinping', 'Manila', 'the Malacanang Palace', 'the Rizal Monument', 'Luneta Park', 'Philippines', 'China', 'the South China Sea', 'Manila', 'Xi Jinping', 'Thursday', 'the U.S. Embassy', 'Weather Alert', 'Okinawa Prefecture', 'September 28-29, 2018', 'Kyushu', 'Honshu', 'Hokkaido', 'September 29', 'October 1', 'Typhoon Trami', 'Typhoon No.', 'Okinawa Prefecture', 'Amami Oshima Island', 'Kagoshima Prefecture', 'early Friday, September 28 through late Saturday, September 29', 'Kyushu', 'Honshu', 'Hokkaido', 'September 29', 'October 1', 'Typhoon Trami', 'Naha', 'Fukuoka', 'Osaka', 'Kyoto', 'Tokyo', 'Mission Japan', 'Twitter', 'Embassy', 'U.S.', 'The Japan Meteorological Service', 'Typhoon', 'English', 'Japan', 'Japan', '1-3', 'Japan', 'less than 48 hours', 'the next week', 'Bugolora', 'Ukora Island', 'Lake Victoria', 'Ukerewe District', 'Thursday', 'afternoon', 'At least 136', 'as many as 40', 'the coming days', 'over 300', '100', 'Hyundai Heavy Industries Co.', 'Ulsan', 'four-hour', '1:00 PM', 'Thursday, October 18', 'Wednesday, October 17', 'Dutch', 'August 20', 'the ECT Delta Terminal', 'the Port of Rotterdam', 'Netherlands', 'August 19', '15:15', '19:00', 'the same day', 'Al Khail Road', 'Jebel Ali', 'Latifa Bint', 'Hamdan Bridge', \"McDonald's\", 'UberEats', 'Wetherspoons', 'Fridays', 'the United Kingdom', 'Thursday, October 4', 'Bristol', 'Newcastle', 'Plymouth', 'Southampton', 'Glasgow', 'Brighton', 'Brixton', 'Crayford', 'Cambridge', 'Watford', 'Milton Keynes', 'London', 'Leicester Square', 'London', '24-hour', 'the United Kingdom', '1:00 PM', 'Wednesday, October 10', 'London', 'Nottingham', 'Birmingham', 'The Bakerloo Line', 'the London Underground', '26 December', 'January', 'the National Union of Rail', 'RMT', '05:00 to 23:00 on Boxing Day', '24 hours', '22:29', '13 January', 'London', 'Unite Scotland', 'the Emirates Arena', 'London Road', 'Glasgow', 'Friday', 'morning', 'three hour', 'the same day', 'the Davis Cup', 'today', 'London', 'London', 'Gospel Oak', 'Friday', 'afternoon', 'London Underground', 'today', 'London', 'London', 'Surrey Quays', 'Clapham Junction', 'Denmark Hill', 'New Cross Gate', 'Crystal Palace / West Croydon', 'Dalston Junction', 'the London Underground', 'Kensington', 'Chelsea Police', 'Earls Court Road', 'Monday night', 'RMT', 'Eurostar', 'London', 'St Pancras', '30 September', '24 hours', 'French', 'West Quay', 'Southampton', 'Thursday', 'afternoon', 'South Quay', 'three', 'Pret', 'Pret a Manger.', 'Extinction Rebellion', 'BBC', 'Friday 21 December', 'Manchester', 'Salford Quays', 'London', 'Langham Place', 'Birmingham', 'Mallbox', 'Bristol', 'Glasgow', 'Truro', \"the Extinction Rebellion's\", 'Loughborough Junction', 'London', 'Wednesday', 'afternoon', 'the London Overground', 'Surrey Quays', 'Clapham Junction', 'St Albans', 'Sutton', 'approximately 16:00', 'London Victoria', 'Dartford / Gravesend / Dover Priory', '18:00', 'National Rail', 'Inminds', 'London', 'today', '24 August', 'first', 'the Embassy of Bahrain', '30', 'Belgrave Square', 'between 14:30 and 16:00', 'Ali Mushaima', 'Bahraini', 'second', 'the National Union of Journalists', 'London', '72', 'Acton Street', 'NUJ', 'Israel', 'Palestinian', 'Palestinian', 'Lama Khater', 'Israeli', 'July', 'between 16:30 and 18:00', 'London Fire Brigade', '20', '120', 'Purley Way', 'Croydon', 'M20', 'London', 'Junctions 9 and 8 near', 'Ashford', 'Wednesday', 'afternoon', 'HGV', 'Junction 9', 'A20', 'the Port of Dover', 'Eurotunnel', 'Cowes Harbour', 'Sunday', 'morning', 'Red Funnel', 'two', 'Southampton', 'East Cowes', '60 minutes', 'England', 'M20', 'between Junctions 9 and 11 coast', 'between Junctions 10 and 11', 'London', 'Maidstone', 'between 20:00', 'Saturday', 'Sunday', 'morning', 'Tuesday', 'afternoon', 'London', 'London', 'A11', 'Aldgate', 'third', 'this week', '24 hours', '13:00', 'Wednesday', 'Aldgate', 'Sunday morning', 'Southampton Central', 'CrossCountry', 'Great Western Railway', 'Southern', '10:30', 'Wednesday', 'afternoon', 'Cheshunt', 'London Liverpool Street', 'London Overground', '17:15', 'London', 'Lewisham', 'Nunhead', 'London', 'this evening', '24 November', '00:00', 'the Romford Overground Station', 'late Monday night', 'London', 'Romford', 'London', 'Liverpool Street', 'Shenfield', 'Friday', 'morning', 'Lymington Pier', 'Southampton Central', 'Bournemouth', 'Southampton Central', 'at least 10:00', 'National Rail', 'one', 'Saturday night', 'the Queens Road', 'Peckham', 'London', 'Surrey Quays', 'Clapham Junction', 'London', 'TfL', 'Bexleyheath', 'London', 'Trains', 'London Euston', 'Saturday', 'first', 'three consecutive weekends', '18-19 August', '25-27', '1-2 September', 'Wembley', '500', 'Network Rail', 'the West Coast Main Line', 'Approximately 150,000', 'Euston', 'the weekend', 'London', 'the West Coast Main Line', 'WCML', 'Euston Railway Station', 'London', 'Sunday afternoon', 'Saturday night', 'Red Funnel', '21:00', 'East Cowes', 'Southampton', 'London Victoria Underground Station', 'Thursday', 'morning', 'Piccadilly Line', 'The National Union of Rail', 'RMT', 'the Central Line', 'the London Underground', '7 November', '24-hour', 'Wednesday', '21 November', 'Central Underground Line', '21-22 December', '22 December', '04:00 to 20:00', 'Saturday 22 December', 'the London Overground', 'Saturday', '25 August', 'Monday', '27 August', 'Saturday to Monday', 'South Tottenham', 'Barking', 'Surrey Quays', 'Clapham Junction', 'Walthamstow Central and Barking', 'Saturday', 'Sunday', 'Euston', 'Watford Junction', 'Stonebridge Park', 'Harrow', 'Saturday', 'morning', 'Liverpool Street', 'Enfield Town', 'Cheshunt', 'Chingford', '10:15', 'Sunday morning', 'Clapham Junction', 'Willesden Junction', '11:15', 'London', 'London', 'the London Underground Piccadilly Line', 'Saturday', 'morning', 'overnight', 'Acton Town', 'Uxbridge', 'London Underground', 'TfL Rail', 'London Overground', 'London', \"King's Cross\", 'the London Underground', 'Wednesday', 'Circle', 'Metropolitan', 'Hammersmith', 'the day', 'the London Underground', 'today', 'the London Underground Central', '5 October and 7 November', 'London Underground', 'Friday', 'shortly after midnight', '24 hours', 'South Western Railway', 'Waterloo', '48 hours', '5', '6 October', 'RMT', 'the London Underground Piccadilly', 'noon', '26 September', '48 hours', 'another five hours', '08:30', '28 September', 'Heathrow Airport', 'Leicester Square', 'London', 'Hundreds', 'at least £', 'Westquay Shopping Centre', 'Southampton', 'Monday morning', 'Harbour Parade', 'Woolwich Ferry', 'East London', '6 October', 'the new year', 'Woolwich', 'Woolwich', 'North Woolwich', 'London City Airport', '1308', '19:45', '6 October', '7 October', 'McDonald', 'one-day', 'ten', 'the United States', 'today', 'Chicago', 'Durham', 'Kansas City', 'Los Angeles', 'Miami', 'Milwaukee', 'New Orleans', 'Orlando', 'San Francisco', 'St Louis', 'October 9', 'the United States Coast Guard', 'Whiskey', 'the Port of Charleston', 'October 9', 'the Port of Charleston', 'Charleston', 'Hurricane Michael', 'Melbourne', 'Geelong', 'Ballarat', '16 August', 'Wednesday', 'The Transport Workers Union', 'Transdev', 'CDC', '24 hours', 'New South Wales Fire', 'Edgecliff Station', 'Illawarra South Coast', 'Trains', 'Town Hall and Bondi Junction', 'Sydney Trains', 'Melbourne', 'Friday', 'Swanson Street', 'Melbourne', 'this week', 'Melbourne', 'Frankston', 'Trains', 'Alamein', 'Belgrave', 'Glen Waverley', 'Lilydale', 'Sandringham', 'Melbourne', 'Victoria', 'Sydney', 'today', '28 November', '15', 'two', 'one', 'later today', '23 October', 'the Australia Council of Trade Unions', 'Melbourne', 'Cairns', '12:30', 'Darwin', 'Nigel Scullion', '1/229', '16:00', 'Marina Parklands', '12:00', 'Mackay', 'Bluewater Quay', '12:00', 'Melbourne', 'Trades Hall', '10:30', 'Rockhampton', 'Riverside Park Auditorium', '17:00', 'Sydney', '12:00', 'Townsville', 'Strand Park', '17:00', 'Wollongong', 'Wollongong Mall', '12:00', 'this morning', '30 August', 'West Footscray', 'Melbourne', 'earlier today', 'Paramount Road and Somerville Road', 'Watch & Act', '500 meter', 'Somerville', 'Paramount', 'two', 'Auchenflower', 'Brisbane', 'Monday afternoon', 'Coronation Drive', 'Sylvan Road', 'Lang Parade', 'Toowong', 'the Riverside Expressway', 'Queensland Traffic Metro', 'the Brisbane Riverwalk', 'Milton', 'Toowong', 'Brisbane', 'Sydney Airport', 'SYD', 'Saturday', 'evening', 'Sydney', 'Gosford/Wyong', 'Greater Wollongong', 'Sydney City', 'Sydney Airport', 'Sydney Harbour Bridge', 'Mona Vale', 'Gosford', 'Bondi Beach', 'Wyong', '18:55', 'Blacktown', 'Lidcombe', 'Sydney', 'Seven', 'Sydney', 'New South Wales', 'this afternoon', '3 November', 'Prospect Highway', '2 October', 'Brussels', \"Place de l'Albertine\", 'More than 10,000', 'between 10:30 and 13:00', '11:45', \"l'Impératrice, Berlaimont,\", 'Pachéco', 'Jardin Botanique', 'Bischoffsheim', 'Rue du Congrès', 'Rue de Ligne', 'Rue de Loxum', 'Gare Centrale', 'the Federal Parliament', 'La Louvière', 'La Louvière –Sud Station', '10:30', 'Liège', 'Espace Tivoli', '11:00', 'Namur', 'National Pension Office', 'Antwerp', 'Hasselt', 'Kortrijk', 'Leuven', 'thousands', 'Coal Harbour', 'Vancouver', 'Friday', 'afternoon', 'at least one', 'West Cordova', 'SkyTrain Expo Line', 'Waterfront', 'second month', 'San Antonio', 'Iquique', 'Valparaiso', 'Terminal Pacífico Sur', 'At least 20', 'Valparaiso', 'the past few days', 'Chile', '55 percent', 'Valparaiso', 'Chinese', 'at least four', 'Typhoon Mangkhut', 'Guangdong Province', 'Sunday', 'evening', 'Monday', 'Three', 'Guangzhou', 'Dongguan', 'the National Meteorological Centre', 'Mangkhut', 'Guangxi Zhuang Autonomous Region', 'a Category One', 'Chinese', 'IV', 'Typhoon Rumbia', 'the evening', 'Thursday', 'Friday', 'morning', 'the National Meteorological Centre', 'Shanghai', 'Zhejiang', 'Shanghai', 'Anhui', '08:00', 'around 230 kilometres', 'Zhoushan, Zhejiang', '10-15kph', 'Wandsbek', 'Hamburg', 'Special Deployment Commando', '05:45', 'today', 'today', '1 September', 'Seebrücke', 'the Mediterranean Sea', 'Berlin', 'Molkenmarkt', '13:00', 'Bernau', 'Berlin', 'Bahnhofsvorplatz', '16:00', 'Cologne', '12:00', 'Hamburg', '14:30', 'Kassel', 'Hauptbahnhof', '15:00', 'Kiel', 'Hauptbahnhof', '12:40', 'Oldenburg', 'Hauptbahnhof', '11:15', 'Osnabrück', 'Hauptbahnhof', '10:00', 'Wildeshausen', 'Bahnhof', '10:45', 'Hong Kong', 'Typhoon Mangkhut', 'The Hong Kong Observatory', 'T10', 'Typhoon Mangkhut', '165 kilometers per hour', '205 kilometers per hour', 'at least 2', 'Philippines', 'Luzon', '30 kilometers per hour', 'Guangdong', 'the Pearl River Delta', 'Hong Kong', 'Guangzhou', 'Shenzhen', 'Zhuhai', 'Macau', 'around 12:00', 'Sunday', '16 September', 'Typhoon Mangkhut', 'Hong Kong', 'the weekend', 'today', 'More than 600', 'Typhoon Mangkhut', 'East Rail', 'at least 15 minutes', 'The US State Department', 'Hong Kong', 'Super Typhoon Mangkhut', 'Hong Kong', 'Macau', 'Sunday, September 16', 'Travelers', 'the Hong Kong Observatory', 'this morning', '62 km', 'Severe Tropical Storm Mangkhut', 'Hong Kong', 'Hong Kong', 'Island Road', 'Wong Nai Chung Road', 'Cyclone Titli', 'Odisha', 'Andhra', 'Thursday', 'At least five', 'Hundreds of thousands', 'Odisha', 'over 300,000', 'Wednesday', 'Paradip', 'around 400,000 to 500,000', 'the coming days', 'Almost 95,000', 'the Christmas', 'New Year', '22 December', '2 January', '13', 'North Sumatra', 'Lampung', 'Banten', 'Greater Jakarta', 'West Java', 'Central Java', 'Yogyakarta', 'East Java', 'Bali', 'North Sulawesi', 'Maluku', 'East Nusa Tenggara', 'Papua', 'the holiday period', 'Westerners', 'Italian', 'Thursday', 'afternoon', 'Genoa', 'Old Port', '18:59', 'Tuesday 30 October', 'At least nine', 'the past 24 hours', 'Venice', 'Milan', 'Rome', 'Genoa', '15', 'State of Emergency', 'the Corporate Area', 'Kingston', \"Jamaica Constabulary Force's\", 'Corporate Communications Unit', 'the Dangerous Drugs Act', 'Andrew Holness', 'the State of Emergency', 'the Kingston Central', 'Kingston Western', 'St Andrew South', 'Oakland Road', 'Spanish Town Road', 'Waltham Park Road', 'Slipe Road', 'Pechon Street', 'Maxfield Avenue', 'Orange Street', 'Ocean Boulevard', 'Sunday', '7 October', 'Chubu Electric Power Company', 'Tokyo Electric Power Company', '590,000', 'Shizuoka', 'Typhoon Trami', 'Monday', 'Hamamatsu City', '260,000', 'Typhoon', 'Trami', 'Shizuoka', 'Yamanashi', 'Kanagawa', 'Chiba', 'Saitama', 'Gunma', 'Ibaraki', 'Tochigi', 'Tokyo', 'Malta', '23:59', 'Wednesday 28 November', 'Maltese', 'the United States', 'The U.S. Embassy', 'U.S.', 'Tropical Storm Xavier', 'approximately 300 miles', 'Manzanillo', 'Mexico', 'tonight', 'Sunday', 'Sunday', 'night', 'Monday', 'The National Hurricane Center', 'Mexican', 'Punta Perula', 'Punta San Telmo', 'Sunday', '4 November', 'Tropical Storm Xavier', 'approximately 160 kilometers', 'Manzanillo', 'up to 85', 'Guerrero', 'Michoacan', 'Colima', 'Jalisco', 'Monday', 'nine', 'kmh', 'tomorrow', '8 September', '1080', 'Saturday', 'Wellington', 'the South Island', 'Wellington Railway Station', 'Parliament', '12:30', 'Waterfront', 'Te Pape Museum', '13:00', 'Mountfort Park', '14:00', 'Blenheim', 'Seymour Square', '11:45', 'Centrum Ln', 'Rolleston', '09:00', 'Pages Rd', 'Wainoni', 'River Rd', 'Richmond', 'Colombo', 'Milton', '12:00', 'Dunedin', 'John Wickliffe House', 'Queens Gardens', '13:00', '12:30', 'Franz Josef', 'Cron St', '12:00', 'Hamilton', '11:00', 'Hokitika', 'Clock Tower', '12:00', 'Wachner Pl', '12:00', 'Katikati', '14:00', 'Kawakawa', '12:30', 'Kerikeri', 'Cobham Rd', 'Mossburn', 'Stags Club', 'Devon St', '11:00', 'Motueka', 'Edward St', '14:00', 'New Plymouth', 'Liardet St', '12:00', 'Ngaruawahia', 'Main St', '12:00', 'Opotiki', 'Bridge St', 'Queenstown', '12:30', 'Rotorua', 'Rotorua Museum', '12:30', 'Stratford', '11:00', 'Tairua', 'Community Hall', '10:30', 'Taumarunui', 'Hakiaha St', '12:30', 'Tauranga', 'Mount Drury', '14:00', 'Goldfields Shopping Centre', 'Kauaeranga Valley Rd', '13:00', 'George Pl', '14:00', 'Tokoroa: Information Centre', 'State Highway 1', 'Turangi', 'Waihi', '14:00', 'Wellsford', 'Community Centre', 'Rodney St', 'Whakatane', 'Quay St', 'HUB Shopping Centre', 'Boon St', '10:30', 'Whanganui', '11:00', 'Whangarei', '12:00', 'Karachi', 'three days', 'Lahore', 'The Oil Tankers Contractors Association', 'OTCA', 'five-day', 'Christian', 'some days', 'Isabela', 'Friday', \"Typhoon Mangkhut's\", 'the weekend', 'Isabela', 'Cagayan', 'Babuyan Group of Islands', 'Apayao, Abra,', 'Kalinga', 'Mountain Province', 'Ifugao', 'Nueva Vizcaya', 'Quirino', 'Aurora', '3', 'Philippines', 'Metro Manila', 'Magat Dam', '7.0', '215 km', '29 December', 'The Philippine Institute of Volcanology and Seismology', 'the United States', \"Cebu City's\", 'Tejero', 'Mc Arthur Boulevard', 'The Pacific Tsunami Warning Center', '7.0', '215 km', 'Davao', 'today', 'Typhoon Kong-Rey', 'Busan', '6 October', '57 mph', 'Busan', 'Spanish', 'today', 'Renfe', '154', '84', 'AVE', 'Long Distance', '70', '78 percent', 'Cercanías de Madrid', '65 percent', 'Madrid', '50-75 percent', 'Seville', 'Valencia', 'Murica', 'hundreds', 'Plaça de la', 'Reina Maria Cristina', 'Barcelona', 'yesterday', 'the Metges de Catalunya', 'CGT', 'Barcelona', '30 November and 5 December', 'Friday', \"the Barcelona City Council'\", 'the Port of Barcelona', 'B-10', 'Railway', 'Colombo', 'last week', 'midnight', '21 August', '8 August', '10 August', 'the coming week', 'The United States Embassy', 'Colombo', 'The U.S. Embassy', 'U.S.', 'November 4, 2018', '2:00 pm', 'November 5, 2018', 'Parliament', 'Colombo', 'Embassy', 'over 40', 'hundreds', 'today', '20 September', 'Lake Victoria', 'over 100', 'over 400', 'MV Nyerere', 'Ukora', 'Bugolora', 'The third day', 'Lake Victoria', '20 September', '207', 'the Tunisian Navigation Company', 'TNC', '2-4 September', '19-21 August', 'last-minute', 'Marseille', 'France', 'Genoa', 'Italy', 'Southampton', 'East Cowes', '14:00', 'Cowes Harbour', 'Red Jet', 'North East', 'the United Kingdom', 'Wednesday', 'evening', 'Trains', 'York', 'Edinburgh', 'Newcastle', 'Hexham', 'Filey', 'London North Eastern Railway', 'TransPennine Express', 'Newcastle', 'metro', 'the Westquay Shopping Centre', 'Southampton', 'Harbour Parade', 'Regent Street', 'London', 'Four', 'One', 'Piccadilly Circus', 'Vigo Street', 'three', 'Canary Wharf', 'London', 'Pret', 'South Quay', 'The National Union of Rail', 'RMT', '24 hour', 'the Piccadilly Line', '7 November', 'the same day', 'the Central Line', 'Greenwich', 'London', 'Pier Walk', 'Eurostar', 'London', 'St Pancras', '30 September', 'Rail', 'RMT', '48 hours', 'the Bakerloo Line', 'the London Underground', '26 December', 'the National Union of Rail', 'RMT', 'Bakerloo Line', '13', '14 January', 'the London Underground Piccadilly', 'Wednesday', '12:00', '48 hours', 'London', 'Rail', 'five hour', '20:30', 'Friday', 'Finsbury Park', \"King's Cross St Pancras\", 'Green Park', 'Hammersmith', 'Heathrow Airport', 'Extra', 'London', 'RMT', 'the London Underground Piccadilly Line', '24 hours', '7 November', '12:00', '8 November', 'London Underground', 'London', 'the London Underground Central', 'Waterloo and City', 'Friday', 'morning', 'the day', 'Extra', 'mid-morning', 'Saturday 6 October', 'Monitor Transport', 'London', 'the London Underground Piccadilly Line', '7 November', 'The National Union of Rail', 'RMT', '24-hour', 'RMT', 'Aslef', 'Waterloo & City', 'London', 'the Westquay Shopping Centre', 'Southampton', 'Harbour Parade', 'Hazardous Materials', 'Glassell Park', 'Los Angeles', '3500', 'North San Fernando Road', 'North San Fernando Road', 'Newsom', 'Ventura', 'Los Angeles', 'Friday', '9 November', 'Woolsey', 'Hill', 'the Ventura Freeway', 'Camarillo', 'Calabasas', 'Malibu', 'the Ventura Freeway', 'the Pacific Coast Highway', 'Friday', 'evening', 'Ventura', 'Los Angeles', 'Donald Trump', 'a State of Emergency', 'Virginia', 'Hurricane Florence', \"The National Oceanic and Atmospheric Administration's\", 'Weather Prediction Center', 'up to 20 inches', 'North Carolina', 'another 10 inches', 'Virginia', 'Maryland', 'Washington', 'D.C.', 'Hurricane Watch', 'North Carolina', 'Hurricane Florence', 'Friday', '14 September', 'Buzzards Bay', 'the U.S. Coast Guard', 'this evening', \"the Windstar Cruises'\", 'Star Pride', '351', 'New Bedford', 'Woods Hole', 'U.S. Coast Guard', 'New York', '90 minutes', 'the Newark Penn Station', 'Pennsylvania', 'New York', 'tonight', '30 October', 'Amtrak Portal Bridge', 'the McGraw Hill Building', 'the Port Authority Bus Terminal in Midtown Manhattan', 'New York City', '330', 'West 42nd Street', 'New York', '21 August', 'the Metropolitan Detention Center', '80 29th Street', 'Prison Strike', 'Columbus Circle', 'Manhattan', 'New York', '22 August', 'Silent Sam', 'the University of North Carolina', 'Chapel Hill', '21 August', 'today', 'Vyse Avenue', '167th Street', 'Bronx', 'NY', 'Puerto Ricans', 'Hurricane Maria', 'one year ago', 'between 13:00 and 19:00', 'the National Hurricane Center', 'Hurricane Florence', '120 miles per hour', 'North Carolina', 'South Carolina', 'Hurricane Florence', 'approximately 350 miles', 'the Wilmington/Cape Fear', 'North Carolina', '16 miles per hour', 'Hurricane Warning', 'Charleston', 'South Carolina', 'Knotts Island', 'North Carolina', 'Georgia', 'Savannah', 'the National Hurricane Center', 'Hurricane Florence', '110 miles per hour', '12-36 hours', 'Florence', 'North Carolina', 'Hurricane Warning', 'Charleston', 'South Carolina', 'Knotts Island', 'North Carolina', 'Georgia', 'the National Hurricane Center', 'Hurricane Florence', 'approximately 08:00', 'Friday', '14 September', 'Tropical Storm', 'late Wednesday night', '12 September', 'Thursday', '13 September', 'today', 'Category Three or', 'Wilmington', 'North Carolina', 'National Guard', 'South Carolina', 'Virginia', 'up to 12 feet', 'Hurricane Florence', 'approximately 900 miles', 'Wilmington', '16 miles per hour', '130 miles per hour', 'Dare County', 'North Carolina', 'Monday', 'morning', 'Hurricane Florence', '12:00', 'today', 'Hatteras Island', 'Tuesday', 'morning', 'Dare County', 'North Carolina', 'South Carolina', 'Virginia', '580 miles', 'Cape Fear', 'North Carolina', 'the East Coast', 'around Thursday', '13 September', 'US', 'more than a million', 'North Carolina', 'South Carolina', 'Virginia', 'Hurricane Florence', 'the National Hurricane Centre', 'NHC', 'around 140mph', '157mph', 'NHC', 'Florence', 'The National Guard', 'South Carolina', 'Henry McMaster', 'several days', 'four', 'North and South Carolina', 'Federal Emergency Management Agency', 'FEMA', 'Spring Lake', 'Darlington County', 'SC', 'Chatham Lake', 'Chesterfield County', 'SC', 'Lake Darpo', 'Darlington County', 'SC', 'Lilesville', 'North Carolina', 'Highway 145', 'FEMA', 'South Carolina', 'Henry McMaster', 'Cheraw', 'Wilmington', 'Fayetteville', 'the Cape Fear River', '62 feet', 'hundreds', 'the Lumber River', 'North Carolina', 'Roy Cooper', '32', 'Around 500,000', 'today', '18 September', 'Florence', 'New York City', 'Mid-Atlantic States', 'the National Weather Service', 'North and South Carolina', 'Georgia', 'Thursday', '11 October', 'Michael', 'overnight', 'the North Carolina/South Virginia', 'Friday', 'Ralph Northam', 'Virginia', 'Virginia Beach', 'Chesapeake', 'Portsmouth', 'Norfolk', 'metro', 'the Virginia Department of Emergency Management', '08:00 local time', 'tomorrow', '11 September', 'Hurricane Florence', '140mph', 'the National Hurricane Center', '1150km', 'North Carolina', 'Dale', 'Richmond', 'one', 'Speeks Drive', 'Hull Street Road', 'the next few hours', 'at least five', 'Virginia', 'overnight', 'this morning', 'the Virginia Department of Emergency Management', 'around 520,000', 'nearly 1,200', 'Flood Warning', 'Virginia', '10:45 EDT', 'Marriott', 'San Francisco', 'Marriott', 'Chicago', 'Boston', 'San Francisco', 'Honolulu', 'Detroit', 'San Diego', 'San Jose', 'Oakland', 'nearly 7,700', '3,000', 'Marriot', 'Hawaii', 'U.S.', 'Monday', '8 October', 'Honolulu', 'Maui', 'Boston', 'San Francisco', 'San Jose', 'Detroit', 'San Diego', 'Oakland', 'Marriott', 'Typhoon Usagi', 'Vung Tau', '25 November', '27 November', '160,000', 'Vung Tau', 'today', '52', 'Quanzhou', 'Fujian Province', 'November 4', 'November 5', 'Donggang', 'C9', 'Fujian Salt Group', 'Xiamen', 'Xiaocuo village', 'Port of Nhava Sheva', 'Jawaharlal', 'this morning', 'between 14:30 to 17:00', 'Aphrodite', '08:00', 'November 17', 'October 19', 'Mexican', 'Ane Textiles', 'Ciudad Victoria', 'Tamaulipas', 'Last June', 'Approximately 40', 'Anec Textiles', '96-hour', '21 days', 'two-day', 'October 28-29', '06:00', 'October 30', 'Chittagong Port', 'October 28', 'the next day', '17:30', 'Inland Container Depots', 'Trailer movement of import', 'two', 'the Road Transport Act', 'three-day', 'the Bangladesh Goods Transport Owners and Workers’ Unity Council', 'around 5,000', 'Container Depots', 'Chittagong', 'only about 1,700 to 1,800', 'twenty-foot', 'around 4,000', 'daily', 'October 31', 'the Road Transportation Act', 'Dhaka', 'December 12', 'the Port of Qingdao', '0.5', '1 day', 'about 1 to 1.5 days', 'the Port of Shanghai', 'last week', 'November 28', 'the Port of Saigon', 'about 1 to 3 days', 'the Port of Saigon', '2-days', 'the Saigon Port Authority', 'the Long Tau Channel', 'October 4-5', 'Busan Port Container Terminals', 'November 7', 'the Port of Yangshan', 'Shanghai', '12-24 hours', 'the next couple of days', 'November 26', 'the Port of Qingdao', '0.5 days', '1.5 day', 'November 27', 'October 11', 'Dalian', 'October 6', '09:30', '17:00', 'December 7', '0.5', '1-day', 'Waigaoqiao North Channel', 'the evening', 'December 5', 'December 18', '0.5 days', 'the Port of Sydney', 'December 17', 'December 22', 'the Port of Ningbo', '0.5', 'December 20-22', 'December 18', 'the Port of Felixstowe', 'December 15', 'December 11', 'the evening', 'December 12', 'the next day', 'November 2', 'the Port of Vancouver', 'up to 6 days', 'the end of October', 'mid-November 2018', 'November 2', 'the Los Angeles-Long Beach Port Complex', 'Hapag Lloyd', 'the Los Angeles-Long Beach Port Complex', 'November 2', 'the Port of Savannah', 'the coming weekend', 'the US East Coast', 'August 21', 'the Port of Durban', 'about 12', 'September 14', 'the Port of Shanghai', 'earlier in the week', 'Karal', 'JNPT', 'October 3', 'October 10', 'Jawaharlal Nehru Port Trust', 'JNPT', 'Osaka', 'Kobe', 'Rokko', 'September 11', 'Norfolk Southern', 'Norfolk Portlock', 'Norfolk International Terminal', 'Virginia Inland Gateway', 'September 10', '6PM', 'Hurricane Florence', 'North Carolina', 'South Carolina', 'Virginia', 'Norfolk Southern yards', 'Norfolk Southern', 'normal hours', 'Florence', 'Norfolk Southern', 'the Atlantic Seaboard', 'August 17', 'the Port of Jakarta', '0.5', 'November 2', 'the Virginia International Gateway', 'the Port of Norfolk', 'January 10', 'CGA CGM', 'USD 300', 'the Port of Montreal', 'November 2018', 'up to 14 days', 'Montreal', 'Hong Kong International Terminals', 'Modern Terminals Limited', '15:00', 'September 17', 'Port of', 'Hong Kong', 'August 21', 'Zandvliet', 'the Port of Antwerp', 'Belgium', 'Y. The Frederik Hendrik', '3.5 tons', 'Zandvliet', 'up to 90 minutes', 'Maersk Newbury', 'October 2', 'the Guayaquil River', 'Ecuador', 'One', 'Manzanillo', 'Mexico', 'Pasman', 'Croatia', '12', 'Jin Hua', 'the Kaohsiung Port', 'Taiwan', 'August 24', 'Jin Hua', 'about 90 tons', '35 tons', 'Last week', '7', 'October 10', 'the Port of Kwangyang', '24 hours', 'October 8', 'December 10', 'the Port of Rotterdam', 'the past weekend', 'the Port of Busan', 'three hours', 'November 25', 'about 12-24 hours', 'French', 'December 14', 'CGT', 'Rouen', 'Seine', 'the early morning hours', 'Quai de France', 'Rouen', 'Boulevard Leningrad', 'Le Havre', 'the day', 'December 18', '8-10 days', 'the Port of Vancouver', 'early December', '4-5 days', 'Emission Control Areas', 'the Bohai Sea Area', 'Pearl', 'January 1, 2019', 'the Emission Control Areas', 'Shanghai', 'Jinshan', 'Yangshan', 'Lv Hua Shan', 'October 1', 'no more than 0.5 percent', 'October 22', 'UK', 'the Ports of Felixstowe', 'Southhampton', 'the Port of Felixstowe', 'November', 'the Port of Southampton', 'up to 2 weeks', 'ETA', '1-day', 'Felixstowe', 'Southampton', 'Felixstowe', 'October 11', 'Catalonia', 'October 11', 'AP-2', 'AP-7', '8 km', '5 km', 'N-240', 'N-340', 'Tarragona', 'FEAT', 'the ground transportation union', 'Atec', '300-600', 'EUR', 'monthly', 'Catalonia', 'Barcelona', 'October 4', 'the Port of Southampton', 'the Port of Felixstowe', 'June 2018', 'Southampton', 'one', 'Monday, October 1', 'the normal 10 days to seven days', 'January 8', 'the Port of Alexandria', 'al-Bukhazi', 'the third consecutive day', 'Captaincy', 'the Port of Alexandria', 'September 14', 'Super Typhoon Mangkhut', '23:00', 'September 14', 'September 15', 'South China', 'Hong Kong', '4', 'Typhoon', 'September 16-18', 'December 20', 'the Port of Qingdao', 'December 20-21', 'December 5', 'the Port of Los Angeles', 'around 4 days', 'the next two weeks of December', 'September 13', 'Hurricane Florence', 'Category 2', 'the Eastern Seaboard', 'Maryland', 'the District of Columbia', 'Virginia', 'North Carolina', 'South Carolina', 'Georgia', 'Maryland', 'Larry Hogan', 'September 10', 'Maryland', 'Florence', 'Ellicott City', 'Joppa', 'Washington, DC:', 'Muriel Bower', 'September 11', 'Virginia', 'Potomac', 'Virginia', 'Ralph Northam', 'September 8', 'the Virginia National Guard', 'the Norfolk-Newport-News-', 'North Carolina', 'Roy Cooper', 'September 7', 'the Port of Wilmington', 'South Carolina', 'Henry McMaster', 'September 8', 'the Port of Charleston', 'Georgia', 'Nathan Deal', 'Georgia', 'September 12', 'the National Hurricane Center', 'Georgia', 'Atlanta', 'the Port of Savannah', 'September 13', 'Hurricane Florence', 'Category 2', 'the Eastern Seaboard', 'Maryland', 'the District of Columbia', 'Virginia', 'North Carolina', 'South Carolina', 'Georgia', 'Maryland', 'Larry Hogan', 'September 10', 'Maryland', 'Florence', 'Ellicott City', 'Joppa', 'Washington, DC', 'Muriel Bower', 'September 11', 'Virginia', 'Potomac', 'Virginia', 'Ralph Northam', 'September 8', 'the Virginia National Guard', 'the Norfolk-Newport-News-', 'North Carolina', 'Roy Cooper', 'September 7', 'the Port of Wilmington', 'South Carolina', 'Henry McMaster', 'September 8', 'the Port of Charleston', 'Georgia', 'Nathan Deal', 'Georgia', 'September 12', 'the National Hurricane Center', 'Georgia', 'Atlanta', 'the Port of Savannah', 'September 18', 'the Port of Savannah', 'Savannah', 'November 2', 'the Port of Xiamen', 'October 31', 'evening', 'December 19', 'the Pier 1 and 2 container', 'the Port of Durban', '10 PM', 'December 18', 'Indorama', 'Markweg', \"D'Arcyweg\", 'the Port of Rotterdam', 'Netherlands', 'Hazmat', 'Indorama', 'PET', 'PET', 'December 18', 'Montreal', 'CA', '20', '40', 'Montreal', 'Cargo', 'North Europe', 'Mediterranean', 'West Africa', 'Middle East', 'Far East', 'Montreal', 'Canada', '1st January 2019', 'the Manila International Container Terminal', 'Typhoon Yutu', 'Rosita', 'October 29-30', 'October 29', 'November 27', 'the Yangtze River', 'November 26', 'the Port of Taicang', 'China', 'Hua Yuan 9999', 'Pu Hui 1', '115', 'Taicang', 'Shanghai', 'four', 'August 24', 'the Port of Colombo', '0.5 day', 'November 7', 'the Port of Yantian', 'less than 12 hours', \"last week's\", 'September 17', 'Gazpromneft', '419', 'August 8', 'the Port of Rotterdam', 'Western African', 'GoDaddy', 'Gazpromneft', 'Italian', 'the Port of Rotterdam', 'January 21', 'Pier 1', '8:17 PM', '70+km', 'Pier 2', 'Piers 1 & 2', 'the Port of Durban', 'September 4', 'Port of Durban', 'South Africa', 'Pier 2 Container Terminal', 'the Port of Durban', '22:00', 'September 12', 'the Port of Durban', '6 PM', '108', '203', '204', 'Pier 2 Container Terminal', 'the Port of Durban', '22:10', 'November 19', 'November 28', 'DP World', 'the Port of Southampton', '15:00', '11:40', 'Pier 1 Container Terminal', 'the Port of Durban', 'November 13', 'the previous day', 'November 5', '03:30', '1', 'Port of Durban', '23:15', 'the previous day', 'October 11', 'the Port of Charleston', 'the United States Coast Guard', 'Port Condition Yankee', 'the Port of Charleston', 'September 25', 'Osaka', 'Kobe Ports', 'Typhoon', 'September 25', 'Osaka', 'Kobe Ports', 'Typhoon Jongdari', 'Pier 1', 'the Port of Durban', '10:30', '06:00', '08:50', 'August 17', 'Pier 2', '203', '204', '05:30', 'September 12', 'the Port of Antwerp', 'Belgium', 'September 11', 'At least seven', 'September 17', 'the Port of Charleston', 'Hurricane, now', 'Tropical Storm, Florence', 'the Port of Charleston', 'the Port of Manila', '6', 'Manila', '13', 'Manila', '5-6 days', '96%', 'Manila', '100%', '5-6 days', 'November 21', 'thousands', 'Manila Port', 'November 23', 'the Alliance of Philippine Brokers and Truckers Association', 'Manila Port', 'Road 10', 'FCL', 'LCL', 'December 4', 'Manila International Container Terminal', 'Manila South Harbor', '5-6 days', '96 percent', 'Manila', '100 percent', '25 percent', 'November 28', 'Manila', '10', 'Manila', '18', 'Manila', 'July', 'Manila', 'October 1', 'South', 'North Harbor', 'Manila', '20', '3 to 5 days', 'Typhoon Mangkhut', '100 percent', '3 to 4 days', 'September 15', 'the Manila Container Yard', 'Mangkhut/Ompong', 'the week', 'Manila', 'September 6', 'Typhoon Jebi', 'the Port of Nagoya', 'September 4', '06:00', 'the morning of September 5', 'December 12', 'Port of Ningbo', '1-1.5 days', 'December 11', 'the next few days', 'October 29', 'the Port of Qingdao', '12-hours', 'October 11', 'the Port of Savannah', 'Hurricane Michael', 'North Carolina', 'South Carolina', '2PM', 'October 11', 'normal operating hours', 'Georgia Ports', 'Savannah', 'October 12', 'the Port of Shanghai', '12 hours', '72 hours', 'September 28', 'the Port of Shanghai', 'December 20', 'DP World', 'the Port of Southampton', 'the early morning hours', 'early afternoon', 'December 20 and December 21', 'Port of Antwerp', 'Belgium', 'early morning', 'September 18', 'September 21', 'dozens', 'Antwerp', '24 hours', 'September 11', 'November 27', 'the ‘Yellow Vests', 'the Pont de Tancarville', 'the Port of Le Havre', 'Greater Paris', 'October 3', 'Bastioni', 'Sommergibile', 'the Morandi Bridge', 'Genoa', 'October 9', '4', 'the Port of Genoa', 'the Port of Genoa', 'the Port of Dalian', 'last week’s', '96-hour', '1 to 2 days', 'September 5', 'Greek Seamen', 'Greece', 'PNO', 'September 3', 'Piraeus', 'the morning of September 3', 'Pier 1 Container Terminal', 'the Port of Durban', '17:00', 'August 25', 'Pier 2 Container Terminal', '203', '204', '14:20', '202', '15:00', 'December 17', 'the Rhine River', 'Germany', 'Mayence', 'Antwerp', 'December 15', 'December 16 and 17', '3 hours', 'August 21', 'the Port of Hong Kong', 'last week’s', 'Tropical Storm Bebinca', 'around 0.5', 'August 23', 'South Western Railway', 'five days', 'October 23-27', 'October 20', 'Southampton', 'Portsmouth', 'Salisbury', 'Basingstoke', 'Woking', 'four', '24-hour', 'Saturday', 'Nevember 3, 10', '17', '24', 'October 16', 'Highway', '17 one day', '160', 'Vancouver', 'approximately USD 3,000', 'USD 600,000', 'EUR', 'EUR', '700,000', 'Ontario', 'October 150', 'the Port of Sydney', 'October 10 to 11', 'the Port of Ningbo', '1.5 to 2 days', 'the evening of', 'December 6 to the next day', 'evening', 'December 7', 'the morning of December 6', 'the morning of December 6 to the next day morning', 'November 9', 'South Africa', 'November 7', 'the Port of Durban', 'Port Elizabeth', 'Coega', 'November 13', 'October 22', 'Ports', 'Sydney', 'Melbourne', 'October 23', '09:30 to 14:00', 'Sydney', 'Melbourne', 'around 150,000', 'Melbourne', 'Port Botany', 'eight hours', 'October 17', '7', 'the Rhine River', 'Mechtersheim', 'Germany', 'October 16', '715 tons', 'the afternoon', 'October 16', 'Rotterdam', 'Netherlands', 'Birsfelden', 'Switzerland', 'October 17', 'Los Angeles', 'Long Beach', '3-day', 'Monday, October 1', 'XPO', 'NFI', '16', 'Justice', 'the past five years', 'XPO Logistics', 'January 9', '48-hour', 'second', '23:59', 'January 9', 'Kolkata', 'Cochin', 'World Vallarpadam', 'Jawaharlal', 'Nehru Port Trust', 'JNPT', 'India', 'January 8', 'APM Terminals', 'DP World', '10', 'October 11', '4', 'Qingdao Qianwan Container Terminal', '2', 'Qingdao Qianwan United Container Terminal', 'QQCTU', '1', 'March 21', 'Nicolas Maduro', 'San Antonio', 'Colombia', 'February 5', 'February 21', 'Venezuela', 'the FAES Special Forces Police', 'the Bolivarian Militia', 'the Aduana Principal de San Antonio del Tachira', 'September 26', 'Border Affairs', 'International Trade for Fedecamaras-Tachira', 'San Antonio', 'del Tachira', 'Tachira', '31', '33', '29', 'the Ministry of Foreign Affairs', 'Colombia', 'San Antonio del Tachira', 'Venezuela', 'Colombia', 'Colombia', 'Venezuela', 'two', 'the Jawaharlal Nehru Port Trust', 'JNPT', 'JNPT', 'the afternoon', 'October 13', 'CMA-CGM', 'Bharat Mumbai Container Terminal', 'Karachi', 'Pakistan', '119,324 tonnes', 'Mundra Port', 'Gujarat State', 'the early morning', 'October 16', 'September 13', 'the Port of Ningbo', 'about 0.5 days', 'the next 3 days', 'November 14', 'the Port of Hong Kong', 'Yangshan Deep Water Port', 'Shanghai', '1 day', '3 to 3.5 days', 'October 31', 'the Port of Genoa', 'Italy', 'October 30', 'October 29', 'Voltri', 'San Benigno', 'Italy', 'Sardinia', 'October 30', 'the end of the week', 'December 21', 'the Port of Shanghai', '0.5 days', 'December 20-22', '0.5 days', 'the next 3 days', 'December 6', 'Pier 2', 'Durban', '8 PM', 'September 13', 'Tropical Storm Barijat', 'Ports of Shekou', 'Chiwan', 'Yantian', 'September 12', 'around 16:00', 'November 22', 'Yangshan', 'between November 20 and 22', '36-48 hours', 'three days', 'Shanghai', 'August 20', 'Cemtex Pioneer', 'the United States', 'Port of Nantong', 'July', 'Port of Abbot Point', 'Australia', 'two', 'Peak Pegasus', 'China', 'US', 'two', 'Port of Dalian', 'July 6', 'China', '25 percent', 'US', 'three', 'November 14', 'the U.S. District Court', 'the Central District', 'California', 'the week', '38', 'the Pacific Outer Continental Shelf', 'Santa Barbara', 'Ventura', 'Los Angeles', 'Wildlife Serice', 'National Marine Fisheries Service', 'the California Coastal Commission', 'two', 'California', 'the Endangered Species Act', 'the Coastal Zone Management Act', 'California', 'Thursday', 'the United States', 'Muscat', 'US', 'Oman', 'Dhofar', 'Yemen', 'Oman', 'Dhofar', 'Al Wusta', 'October 13', 'The Port of Salalah', 'Oman', 'Saudi Arabia', 'Yemen', 'al-Mahra', 'Hadramaut', 'Socotra', 'Luban', 'Friday', 'Yemen', 'the coming days', 'the Weather Alert', 'November 1', 'the US Marshals Service', 'Philadelphia', 'two', 'Gloucester County', 'NJ', 'September 14', 'Logan Township', 'New Jersey', 'second', 'US-17', 'Savannah Harbor Pkwy', 'W Oglethorpe Ave', 'the Talmadge Bridge', 'Hurricane Michael', 'this afternoon', 'the Fashion District', 'Los Angeles', 'Interstate 10', 'Alameda Street', 'the Port of Los Angeles', 'Long Beach', 'Tuesday night', '30 October', 'The Evergreen Terminal', 'Bomb Squad', 'this morning', 'Oakland', '72nd Avenue', 'Hawley Street', 'Off Road Warehouse', 'San Diego', '17 November', '7915 Balboa Avenue', 'Balboa Avenue', 'Mercury', 'The United States', '4.4', '45 km', 'Los Angeles', '28 August', '6 km', 'at least three', 'this morning', 'the Port of Oakland', 'this morning', 'Long Beach', '211', 'East Ocean Boulevard', 'South Coastal Highway', 'Port Wentworth', 'Savannah', '31 August', '100', 'South Coastal Highway', '100', 'South Coastal Highway', 'the Social Security Office', '1350 Doughty Road', 'Egg Harbor Township', 'between 20 and 24', 'two', 'Garden State Parkway', 'Toms River', 'Wednesday 26 December', 'At least four', 'four', 'this afternoon', 'Seaside Heights', 'Grant Avenue', 'Route 88', 'Ocean County Park', 'R-88', 'Jersey City', 'New Street', 'Ocean Avenue', 'Ludlow Street', 'New Jersey Transit', 'the Red Bank Station', 'Friday', '28 December', 'up to 45 minutes', 'North Jersey Coast Line', 'Red Bank', 'Middletown', 'NJ Transit', '60 minutes', 'Northeast Corridor', 'this morning', 'Trenton', 'NEC', '3830', 'NEC', '3930', 'Amtrak', 'Trenton', 'NJ Transit', 'NJ Transit', 'Port Authority', 'Trans-Hudson', 'NJ Transit', 'Newark', 'New York', 'Hoboken', 'the Port Authority', 'Trans-Hudson', 'Monday', '19 November', 'Newark', 'Harrison, Hoboken', 'Jersey City', 'New Jersey', 'Manhattan', 'New York City', 'Sean', 'Saturday', 'morning', 'Sea Bright', 'approximately 10km', 'Middletown', 'over 14,000', 'Monmouth', 'Ocean', 'Saturday', 'morning', '27 October', 'two', '200', 'Pacific Street', 'Newark', 'Friday', 'afternoon', 'the Lower East Side', 'New York', 'tonight', '26 November', 'six', 'one', 'Canal Street', 'Alan Street', 'the Lower East Side', \"The Cattaraugus County Sheriff's\", 'Wednesday', '28 November', 'several inches', 'the morning', 'the morning hour', '18:00', 'Main Street', 'this afternoon', 'Port Washington', 'the Ocean Parkway Station', 'Brooklyn', 'New York City', 'Friday', 'morning', 'one-year', 'Hurricane Maria', 'today', 'Washington Square Park', 'Rochester', 'NY', 'Puerto Ricans', '20 September', 'FDR Drive', 'between East 80th', 'East 96th', 'New York City', 'Saturday', 'Staten Island', 'New York', 'this morning', 'two', 'Charles Avenue', 'Port Richmond Avenue', 'Charles Avenue', 'Port Richmond Avenue', 'the Port Authority Bus Terminal in Midtown Manhattan', 'New York City', 'this afternoon', '30 October', 'West 42nd Street', 'Grant Ferry', 'Buffalo', 'tonight', 'West Avenue', 'Albany', 'Metropolitan Detention Center', 'Brooklyn', 'New York', '21 August', 'Nat Turner Day', 'today', '80 29th', 'around 29th', 'Pennsylvania Station', 'New York City', 'the Portal Bridge', 'this afternoon', '13 November', 'the Portal Bridge', 'Pennsylvania', 'the Hunters Point Avenue Station', 'New York City', 'Sunday', '26 August', '7 Train', 'Queensboro Plaza Station', 'Grand Central Terminal', 'Memphis', 'Friday', '7 September', 'South Main Street', 'East Virginia Avenue', 'at least 27,000', 'Houston', 'Thursday', '27 December', 'Channelview', 'Houston', '18 December', '18000', 'Market Street', 'Hazardous Materials (HazMat', 'today', 'Northline', 'Houston', 'East Crosstimbers Street', 'Fulton Street', 'Greater Greenspoint', 'Houston', 'Sunday', '1300', 'Hugh Road', 'The Portsmouth Police Department', 'Port Norfolk', 'Portsmouth', 'tonight', '7/11', '700', 'Mount Vernon Avenue', 'Port Norfolk', 'Multiple Tornado Warnings', 'Richmond', 'this afternoon', 'Richmond', 'around 16:15 EDT', 'Louisa', 'Goochland', 'Hanover', 'Hampton Park', 'the Ocean View Golf Course', 'Norfolk', 'Sunday', 'morning', 'the Vancouver School District', 'this afternoon', '2901', 'Falk Road', 'today', '27 August', 'Marriott', 'Chicago', 'Boston', 'San Francisco', 'Honolulu', 'Detroit', 'San Diego', 'San Jose', 'Oakland', 'Marriott', 'McDonald', '24-hour', '10', 'U.S.', 'Tuesday', '18 September', 'around 12:00', 'Chicago', 'Durham', 'North Carolina', 'Kansas City', 'Missouri', 'Los Angeles', 'Miami', 'Milwaukee', 'New Orleans', 'Orlando', 'Florida', 'San Francisco', 'St. Louis', \"a 'Day of Action\", \"Puerto Rico'\", '20 September', 'U.S.', 'one year', 'Hurricane Maria', 'Puerto Rico', 'over 4,600', 'Puerto Ricans', 'U.S.', 'Boston', 'MA', 'Villa Victoria', '17:30', '59', 'Temple Place', '20:00', 'Boulder, CO', '1440 15th', 'St', '10:30', 'Buffalo', 'NY', 'Maryland', 'Niagara', '17:00', 'Chicago', 'IL: Federal Center', 'Plaza', '17:00', 'Columbus', '740', '19:00', 'Detroit', 'Chase Bank', '611', 'Woodward Ave', '16:00', 'Hartford', \"El Mercado'\", '704', 'Park St', '18:30', 'Las Vegas', 'NV', '4250', '18:00', 'Los Angeles', 'CA', '19:00', 'Lynchburg', 'VA', '901', 'Church St', '20:00', 'New York', 'NY', 'Union Square Park', '18:00', \"St Bartholomew's\", 'Trump Tower', '18:00', 'Orlando', 'FL', '134', '18:00', 'Philadelphia', '3400', '17:00', 'Phoenix', 'AZ', 'Steele Indian School Park', '20:00', 'Portland', 'Pioneer Courthouse Square', '12:00', 'Washington, DC', 'The White House', '20:00', 'Transportation', 'Valencia', 'Protests', 'Cargo', 'Property', '19 December', 'Valparaiso', '34-day', 'CLP1.37 million', 'Colon Avenue', 'Ultraport', 'approximately 25', '16', 'Valparaiso', 'Empresa Portuaria de Valparaiso', 'EPV', 'Chilean', '10', 'Bio Bio', 'Caldera', 'Coronel', 'Iquique', 'Lirquen', 'Penco', 'San Antonio', 'San Vicente', 'Talcahuano', 'Ventanas', 'Chile', '2013â\\x80\\x9314', \"three-weeks'\", 'Chilean', 'approximately USD300 million', 'December', '95%', '2017', 'Chilean', 'IHS Markit Foresight', '2018', 'BC Hydro', 'Vancouver Island', '99 percent', 'years', 'four', 'the United States', 'East Coast', 'Hurricane Florence', 'North Carolina’s', 'two', 'September 12', '5', 'Ports of', 'Wilmington', 'Norfolk', 'Charleston', 'U.S.', 'the Cape Fear River', '18:00', 'September 12', '09:00 to 15:00', 'August 26', 'about 100', 'Hong Kong Island', 'Causeway Bay', 'Victoria Harbour', 'Chai Wan', 'Cale', 'Tai Tam Bay', 'Stanley', 'Hong Kong', 'the day', 'September 2', 'the Port of Saigon', 'about 1-2 days', 'December 12', 'the Port of Saigon', 'about 1 to 2 days', 'August 8', 'the Port of Surabaya', 'Connect Health and Community', 'North Richmond Community Health', 'Co-Health', 'Carrington Health', 'Inspiro', 'Merri Health', 'Wednesday, August 22', 'Ashford International', 'Victoria Rd', 'at least 10:00 AM', 'today', 'May 2018', 'Vietnam', 'Cat Lai Port', 'Hai Phong Port', 'Vietnamese', 'China', 'early 2018', 'half', 'China', 'Southeast Asia', 'One', 'Vietnam', 'China', 'the United States', 'Vietnam', 'around 147 million pounds', 'between January and May 2018', 'about 85 million pounds', '2017', '56 million pounds', '2016', 'May', 'more than 30 to 90 days', 'Cat Lai Port', 'about 8,050', 'long-day', '5,234', '2,816', '90 days', 'Cai Mep', 'Tan Cang', 'Hiep Phuoc Ports', 'Cat Lai Port', 'June 15', 'June 25 to October 15', 'control & manage', 'early October 2018', '4,000', 'Cat Lai Port', '3,000', 'more than three months', 'a few months', 'Vietnam', 'Ho Chi Minh City', 'about 900 tons', 'daily', 'only 90 tons', 'years', 'Vietnam', 'Thailand', 'Malaysia', 'Vietnam', 'July 2,', 'Thailand', 'second', 'Vietnam', 'Ports of Laemchabang', 'Songkhla', 'Vietnam', 'Thailand', 'Malaysia', '114', 'Indonesia', '100 percent', 'early April', 'the United Kingdom', 'the first three months of this year', 'Southeast Asian', 'China', 'China', 'about 7 million tons', 'annually', 'the United States', 'Europe', 'India', '164.4 percent', '70,550', 'China', 'Southeast Asian', 'September 10', 'Virginia Ralph Northam', 'September 8', 'Tropical Storm Florence', 'the Virginia National Guard', 'Virginia', 'the Port of Norfolk', 'Virginia', 'Florence', 'September 13', 'Virginia', '1.29%', 'Roanoke', 'Lynchburg', '1.38%', 'Harrisonburg', '1.48%', 'Richmond', '2.5%', 'Charlottesville', '9.1%', 'the Hampton Roads', 'Virginia', 'the Virginia State Police', 'Winter Storm Diego', 'December 9 to 10', 'over 1,000', 'over 1,150', 'December 9', 'I-295', 'I-81', 'I-95', 'Virginia', 'October 5', 'the Port of Genoa', 'Italy', '12:00', 'earlier this week', 'two', 'the Providence St Joseph Health', 'One-day', 'the Little Company of Mary Hospital', 'W 7th St and S Patton Ave', 'Los Angeles', \"Providence Saint John's\", 'Health Center', 'Santa Monica Blvd', '21st St', 'Santa Monica', 'November 22', 'Waigaoqiao', 'November 21', '22', '12 hours', 'three days', 'Shanghai', 'Ecuadoran', 'FUT', '20 September', 'Quito city', 'Carondelet', 'Guayaquil', 'Quito city', 'IHS Markit Foresight', '2018', 'National Union of Rail', '24-hour', '12:00', '7 November and 12:00', '8 November', 'Waterloo, Bank', 'Liverpool Street', \"King's Cross St Pancras\", 'Green Park', 'Heathrow Airport', 'September', 'thousands', 'IHS Markit Foresight', '2018', 'Spain', 'the Spanish National Day', '12 October', 'Barcelona', 'last year', '8 October', 'approximately 1 million', 'year', 'tens of thousands', 'pro-Spanish', 'the Citizens (Ciudadanos) party', '7 October', 'Passeig de Gracia', 'Placa de Catalunya', 'Gran Via de les Corts Catalanes', 'Via Laietana', 'IHS Markit Foresight', '2018', \"The Panhellenic Seamen's Federation\", 'PNO', '24-hour', '3 September', 'PNO', 'the day', 'approximately 200,000', 'Greek', 'Piraeus Port', 'Athens', 'April 2018', 'May 2017', 'IHS Markit Foresight', '2018', 'Valparaiso', '22â\\x80\\x9323 December', '19 November', '16 November', 'San Antonio', 'Cochrane', 'Errazuriz', 'solidarity', 'Bio-bio', 'San Antonio', 'Antofagasta', 'Iquique', 'IHS Markit Foresight', '2018', 'Unidos', '25 October', 'Panamanian', 'Juan Carlos Varela', 'Panama City', 'Pan-American Highway', 'the Pan-American Highway', 'Panama City', 'Herrera', 'Los Santos', 'Panama Province', 'Panama City', 'July 2018', 'several hours', 'IHS Markit Foresight', '2018', 'Argentine', 'CONADU', '21 August', '24 August', 'the week', 'the afternoon of 23 August', 'the day', '24 August', 'Buenos Aires', '30 August', 'Callao Avenue', 'Recoleta', 'IHS Markit Foresight', '2018', 'UK', 'Brexit', 'London', '20 October', 'Park Lane', 'Piccadilly', \"St James's Street\", 'Trafalgar Square', 'Downing Street', 'Parliament Square', '100,000', 'Westminster Bridge', 'Birdcage Walk', 'Abingdon Street', 'Victoria Street', 'IHS Markit Foresight', '2018', 'Rice', '22 October', 'Guayas', 'Ecuador', 'Guayaquil', 'the week', '29 October', 'Guayaquil', 'Ecuador', '17 August 2018', 'Guayaquil', 'Los Rios', 'several days', 'IHS Markit Foresight', '2018', 'Catalan', 'Barcelona', '10 September', 'Catalonia', 'Diada', 'National Day', '11 September', 'the Catalan National Assembly', 'Assemblea Nacional Catalana', 'ANC', 'Barcelona', 'Girona', 'Lleida', 'Tarragona', '2017', 'Diada', 'around 1 million', 'Barcelona', 'this year', 'ANC', 'some 200,000', 'Barcelona', 'IHS Markit Foresight', '2018', '14â\\x80\\x9315 September', 'Independence Day', 'San Jose', '10 September', 'San Jose', 'La Merced Park', 'Leon Cortes', 'Paseo Colon', 'Avenida Segunda', 'the National Assembly', 'Independence Day', 'the next month', 'IHS Markit Foresight', '2018', 'November 30', 'Waterside and Landside', 'Pier 1', 'the Port of Durban', '1:15 PM', 'the Port of Durban', 'the Port of Oakland', 'Water St and Clay St.', 'South Western Railway', 'Waterloo Station', 'Monday', 'Waterloo Station', 'Surbiton', 'Southern', 'London Underground', 'Great Western Railway', 'South Western Railway', 'October 21', 'October 22', '5 AM through 5 PM', 'October 29', 'the Viaduto da Alemoa', 'Santos', 'Rua Augusto Scaraboto', 'Truck', 'Brazil', 'Santos', 'October 29', 'the Sydney Harbour Bridge', 'the Western Distributor', 'Three', 'four', 'the Western Distributor', 'Endeavour Energy', 'Western Sydney', 'India', 'September 2017', 'Indonesian', 'Coal India', 'Coal', 'India', '80%', 'the Coal Ministry', 'September 22', 'Mundra, Paradip', 'Vinshakhapatnam', 'Krishnapatnam', 'The Aluminum Association of India', 'the Indian Captive Power Producers’ Association', '75%', 'the Coal Ministry', 'between 15 to 50%', 'Ministry', 'Indian', 'annually', 'the monsoon season', 'the season', '2017 to 2018', 'India', '35%', '15.6 million tons', '21.1 million tons', 'September 2018', 'recent months', '180 billion', '1.15 %', 'monthly', 'previous years', 'South Africa', 'Indonesia', 'India', '4.3%', '9.3%', 'the previous year', 'Indian', 'Eicher', 'Tata', 'Hyundai Motor', 'Ulsan', 'Yeompo', 'Simcheonggol-gil', 'Friday', 'Thursday', 'Morning', 'two hours', 'afternoon', '10:30 PM', 'January 11', 'Hong Kong', 'Da Tai', 'the Port of Vitoria', 'January 10', 'first', 'Coresky Ol', 'April 3', 'the Gisborne Hospital', 'Incheon', 'May 2', '6am', 'Intelligence', 'Everstream Analytics', 'May 19', 'IMO 9168221', 'the Saint Lawrence River', 'Les Escoumins', 'Quebec', 'Montreal', 'the day', '05:00', 'May 20', 'The European-Mediterranean Seismological Centre', '4.3', 'approximately one mile', 'Manzanillo', 'Mexico', 'January 9', '13', 'Seamax New Haven', 'Port of Kaohsiung', 'Taiwan', '13', 'Only 3', 'August 21', '13', '22:00', 'August 20', '2000', 'South Brazos STreet', 'Frio City Road', 'San Antonio', 'TX', 'Union Pacific', 'at least 24 hours', 'Union Pacific', 'San Antonio', '5.2', 'approximately 13 miles', 'Patnanungan', 'Philippines', '4.7', 'Metro Manila', 'the Philippine Sea', 'approximately 160 miles', 'Tokyo', 'Japan', '17 miles per hour', '52 miles per hour', '63 miles per hour', 'The U.S. Geological Survey', '6.1', '17 miles', 'La Victoria', 'Colombia', '5.8', 'the European-Mediterranean Seismological Centre', 'Typhoon Faxai', 'the Pacific Ocean', 'the next 24 hours', 'the last week', 'Faxai', 'Japan', 'the Kanto Region', 'At least 40', 'two', 'more than 12', 'Tateyama', 'Chiba Prefecture', 'ten', 'Chiba', 'Five', 'Kanagawa Prefecture', 'an additional five', 'Shizuoka Prefecture', 'More than 220,000', 'The United States', '4.5', 'roughly 19 miles', 'Santos City', 'September 9', 'Asian', 'IMO 9409704', 'the Yokohama Bay', 'April 23', '2', 'Pakistan', 'Hyderabad', 'Hyderabad', 'Sindh', 'April 23', 'first', 'Pakistan', 'Allama Iqbal Express', 'Karachi', 'Hyderabad', 'The U.S. Geological Survey', 'European-Mediterranean Seismological Centre', '6.8', 'two miles', 'Sinawilan', 'Philippines', 'at least three', 'up to 31', 'One', 'Matanao', 'Davao del Sur', 'Mindanao', '13', 'the Magsaysay Municipal Hall', 'Dozens', 'Intelligence', 'Everstream Analytics', 'April 26', '9pm', '2', 'Jackson Bay', 'IMO 9322358', 'the Jakarta Container Terminal', 'April 23', 'the Port of Callao', '1851', '2202', 'MSC Carlotta', 'IMO 9756731', 'April 25', 'February 28', 'Newark', 'New Jersey', 'USA', '1.5 tons', 'Antwerp', 'Belgium', 'Panama', 'November 18', '200,000', 'three months', 'Nanjing', 'first', 'June 28', 'around 20,000', '30,000', 'August 2018', '400,000', 'USD 56,883', 'EUR', '51,411', 'Kyarr', 'the Arabian Sea', 'Lakabi', 'Oman', 'Kyarr', 'the Arabian Sea', 'Kyarr', 'Indian', 'Goa', 'Karnataka', 'Maharashtra', 'Karachi', 'Pakistan', 'December 6', '24-hour', 'the Port of Le Havre', '06:00', 'December 10', 'The European-Mediterranean Seismological Centre', '3.6', 'approximately 24 miles', 'Callao', 'Peru', 'Everstream Analytics', 'February 3', 'this week', 'February 3-7', '24-hour', 'Port of Le Havre', 'February 6', '06.00', '06.00', 'the next day', 'the Port of Fos-sur-Mer', '24-hour', 'February 5', '20.00', 'August 26', 'the Maritime Union of Australia', '24-hour', 'Sydney', '06:00', 'August 29', 'Enterprise Agreement', '4.7', 'approximately 28 miles', 'Tianjin', '4.5', 'January 31, 2018', 'Dominican Republic', 'Santos Brazil', 'late January 28', 'Guyana', 'one', 'three', 'Cook', 'Santos', 'January 3', '3,500', 'Corona', 'about USD 100,000', 'EUR', '87,720', 'about 17:00', 'December 19, 2018', 'Cody Avenue', 'Cypress Avenue', 'Queens', 'New York', 'The U.S. Geological Survey', '4.6', '30 miles', 'San Antonio', 'Puerto Rico', '3.7', 'approximately 31 miles', 'Nagoya', 'Japan', 'The European-Mediterranean Seismological Centre', '4.8', '33 miles', 'San Antonio', 'Puerto Rico', 'The U.S. Geological Survey', '4.8', '35 miles', 'San Antonio', 'Puerto Rico', '5.0', 'The U.S. Geological Survey', '4.6', '35 miles', 'San Antonio', 'Puerto Rico', '5.1', 'approximately 35 miles', 'Santos', 'Philippines', 'The European-Mediterranean Seismological Centre', 'EMSC', 'U.S. Geological Survey (USGS', '4.1', 'approximately 39 miles', 'San Antonio', 'Puerto Rico', '4.3', 'approximately 39 miles', 'Tokyo', 'Japan', 'The European-Mediterranean Seismological Centre', '6.5', 'four miles', 'Bulatukan', 'Philippines', 'At least five', 'four', 'one', 'eight', 'Kidapawan City', \"Eva's Hotel\", 'Makilala', 'Makilala', 'Davao', '6.4', 'approximately four miles', 'Columbio', 'Up to five', 'at least 36', 'At least 29', '15', 'the Davao del Sur', '14', 'Soccsksargen', 'at least two hours', 'Kidapawan', 'Dozens', 'The Pacific Tsunami Warning Center', 'May 6', '40', 'Port Qasim', 'February 19', 'Pakistan', 'Unilever', 'Nestle', 'Pakistan', \"the Federal Board of Revenue's\", 'Customs Operations', 'Karachi', 'the Ministry of Commerce', 'Pakistan', 'Iranian', 'the Red Sea', 'approximately 40 miles', 'Jeddah', 'Saudi Arabia', '26', 'more than one million barrels', 'the Saudi Border Guard', '4.1', '42 miles', 'San Antonio', 'Puerto Rico', 'The U.S. Geological Survey', '6.0', '45 miles', 'San Antonio', 'Puerto Rico', '6.3', '5.1', 'seven', 'October 14', '5', 'Sahiwal', 'Mirpur Mathelo', 'October 14', 'Karachi', 'the evening', 'October 14', 'Karachi', 'September 13', '5', 'the Port of San Antonio', 'September 13', 'The MSC Veronique', 'the Safmarine Nomazwe', 'Terminal 1', 'Valparaiso', 'September 15', 'the Svendborg Maersk', 'Buenos Aires', 'September 16', 'the Maersk Laust and Skartind', 'September 13', '6', 'San Antonio', 'The European-Mediterranean Seismological Centre', '4.0', '52 miles', 'San Antonio', 'Puerto Rico', 'The U.S. Geological Survey', '5.3', 'approximately 58 miles', 'Muara Siberut', 'Indonesia', 'the Indian Ocean', 'The U.S. Geological Survey', '6.6', 'approximately six miles', 'Kisante', 'At least five', 'up to 70', 'Magsaysay', 'Davao del Sur', 'Koronadal', 'South Cotabato', 'Arakan', 'Cotabato', '30', 'Kidapawan City', '13', \"M'lang\", '6.8', 'Davao City', 'Digos City', 'the Felcris Centrale', 'Davao City', 'the Cor Jesu College', 'Digos City', 'Two', '5.0', '5.8', 'Davao City', 'the University of Mindanao', 'the Department of Agriculture in Region 11', 'the San Pedro Hospital', 'The European-Mediterranean Seismological Centre', '4.2', 'six miles', 'Manzanillo', 'Mexico', 'The U.S. Geological Survey', '3.5', 'six miles', 'Taipei', 'Taiwan', '60-hour', 'Sydney Patrick Terminals', 'bush', 'Christmas', 'New Year', '4.3', 'approximately 61 miles', 'Taipei', 'Lorena', 'the Gulf of California', 'approximately 62 miles', 'Hermosillo', 'Mexico', 'Sonora', 'Manzanillo', 'Manzanillo', 'Ciuhatlan', 'San Patricio Jaluco', 'Villa Obregon', 'Chamela Francisco Villa', 'Perula', 'La Fortuna', 'Morelos', 'Campo Acosta', 'At least 21', 'Manzanillo', '4.2', 'the Pacific Ocean', 'approximately 65 miles', 'Tokyo', 'Japan', '4.4', 'the East China Sea', 'approximately 65 miles', 'Taipei', 'Taiwan', 'the BD Gregg', 'Bros Limited', 'Maxfield Avenue', 'St Andrew', 'Kingston', 'earlier this month', 'first', 'February 8', '11th', '69', 'more than 3 million Jamaican dollars', 'USD 23,000', 'EUR', '19,700', '11R22.5', 'Royal Black RS201', '11R22.5', 'Royal Black RS600', '11R24.5', 'Lanvigator S201', 'Ecuador', 'March 19, 2019', 'Panismar - Consorcio Panatlantic & Astiesmar - operator', 'Guayaquil', 'Galapagos Islands', 'Guayaquil', 'Galapagos Islands', 'Monday, April 29', 'Panismar', 'Timsa', 'Puerto Gal', 'over 7,000 tons', 'Guayaquil', 'Galapagos Islands', 'Paola', 'Sunday', 'The United States', '7.5', 'approximately 71 miles', 'Palora', 'at least three', 'one', 'Guayaquil', 'one', 'Macas', 'Macas', 'an estimated 82 miles', 'the Indian Ocean', 'The Australian Bureau of Meteorology', 'Mardie', 'Whim Creek', 'Dampier', 'Karratha', 'Roebourne', 'Millstream', 'BHP', 'Rio Tinto', 'Veronica', '6.1', 'approximately eight miles', 'Hualien City', 'Taiwan', 'the Philippine Sea', 'at least 17', '15', 'Taipei', 'At least two', 'metro', 'Taipei', 'The U.S. Geological Survey', '4.7', 'approximately eight miles', 'Manzanillo', 'Mexico', 'the Pacific Ocean', 'December 19', '8,000 tonnes', 'two years', 'between 2016 and 2017', 'ten', 'Shell', 'Pulau Bukom', 'Singapore', 'Vietnamese', 'five years and half years', 'EUR', 'USD 5.7 million', '5.13 million', 'two', 'Vietnamese', 'Shell', 'March 19, 2019', 'Rs 4', 'EUR', 'Dubai', 'two', 'April 2017', 'May 2018', 'two', '100', 'January 24', 'the Civil Guard', 'Moroccan', 'Morocco', '92', 'marijuana', 'Algeciras', 'The European-Mediterranean Seismological Centre', '4.5', 'approximately 98 miles', 'Taipei', 'Taiwan', 'the East China Sea', 'The U.S. Geological Survey', '4.6', 'approximately 99 miles', 'Santos', 'Philippines', 'the Philippine Sea', 'Qingdao', 'China', 'December 9', 'the A1 Genoa-Savona Highway', 'the A16 Highway', 'Gravellona', '22:00', 'December 9 to 06:00', 'December 10', 'A10', 'A26', 'Genoa', 'December 12', 'the A12 Genoa-Sestri', '22:00 to 06:00', 'December 16 to December 17', 'Genoa', 'the A12 Highway', 'Genoa', 'December 19', 'A56', 'Napoli', 'Highway', 'Corso Malta', '22:00', 'December 19 to 06:00 to December 20', 'the A56 Highway', 'Poggioreale', 'December 20', 'A7', 'A10', 'A26', 'the Port of Genoa', '45-hour', 'the Port of Genoa', 'an additional 45 hours', 'December 16', 'A7', '22:00 to 06:00', 'December 17 to December 18', 'Genoa', 'A7', 'A12', 'Genoa', 'two-day', 'Aberdeen Train Station', 'Sunday, September 29 to Monday, September 30', 'The Caledonian Sleeper', 'Aberdeen', 'London', 'Associated British Ports', 'ABP', 'Dock Gate 8', 'Dock Gate 20', 'the United Arab Emirates', 'Qatar', 'the Abu Dhabi Ports', 'Qatari', 'Emirati', 'Emirati', 'Qatari', 'Doha', 'UAE', 'Bahrain', 'Egypt', 'Saudi Arabia', 'Qatar', 'June 2017', 'Doha', 'Iran', 'Qatar', 'Quartet', 'Bahrain', 'Egypt', 'Saudi Arabia', 'UAE', 'the World Trade Organization', 'WTO', 'Qatar', 'Abu Dhabi', 'July 2017', 'last month', 'Quartet', 'third', 'UAE', 'Qatar', 'Gulf', 'December 10', 'the Port of Charleston', 'December 10', 'the Port of Savannah', 'February 10', 'Nepalese', 'Tanjung Pelepas Port', 'Jalan', 'Utama Dermaga', 'hour', 'March 24', 'more than two', 'Sunday', '7:45 PM', 'Jacques-Cartier', 'Montreal', 'Montreal', 'the South Shore', '9:00 PM', 'October 16', 'Langeberg', 'the coming hours', 'November 5', 'the Port of Vancouver', 'the Trans Mountain Pipeline Expansions', 'Canada', 'the morning of', 'November 5', 'noon', 'April 25', 'Rotterdam', '12-hours', 'April 25', 'Rotterdam', 'at least 12', 'the Port of Algeciras', 'the afternoon of January 1', '5-days', 'February 22', 'the Port of Le Havre', 'France', '10', '30', 'this morning', 'today', 'the weekend', 'November 22', 'Felixstowe.', '100 days', 'Port Qasim', 'Karachi', 'Parliament House', 'Islamabad', '10 January', 'September 4', 'the Air Cargo Complex', 'ACC', 'Mumbai', 'the Jawaharlal Nehru Port Trust', 'JNPT', 'September 4', 'the next 48 hours', 'The India Meteorological Department', 'IMD', 'September 6', 'Mumbai', 'Thane', 'Palghar', 'Maharashtra', 'Al Qusais', 'Dubai', 'September 5', 'the Alameda County District', '12', 'FedEx', 'USD 1 million', 'September 5', '61', '31', '10', 'Northern and', 'Central California', 'December 2018', 'August 29', 'Oakland', 'San Leandro', 'Pittsburg', 'two', '1,386', '144,902', 'Union Pacific', 'Houston', 'December 30, 2018', 'Kirkpatrick Boulevard', 'Alexandria', 'Dekheila', 'three days', 'Egyptian', 'five', 'the Mediterranean Sea', 'Red Sea', 'Gulf of Suez', 'Ein Sokhna Port', 'Suez Port', 'three', 'the Gulf of Suez', 'March 17', 'Alexandria', 'Dekheila', 'March 14', 'March 12', 'Alexandria', '5', 'Alexandria', 'Amariya', 'April 25', 'the Department of Public Works', 'Luzon', 'Philippines', 'DPWH', '275', '452', '142', 'Metro Manila', '3', '275', 'Metro Manila', 'Guadalupe Bridge', 'Makati', 'the Tinjeros Bridge', 'Tanza Bridge', 'Malabon City', 'UN Avenue', 'Emilio Aguinaldo College', 'Manila', 'one', 'DPWH Quick Response Teams', 'Central Luzon', 'Calabarzon', 'NCR', 'Eastern Visayas', 'Surigao del Norte', 'Davao Occidental', 'Davao Oriental', 'April 25', 'the Americana Municipal Guard', '2', '600,000', 'EUR', 'USD 162,000', 'August 19', 'Leicestershire', 'Cambridge Road', 'Whetstone', 'UK', 'around 03:30', 'August 19', 'London', 'UK', 'West Midlands', 'November 15', 'Bolivia', 'Jeanine Anez', 'the Bolivarian Alliance', 'the Union of South American Nations', 'Unasur', 'The Bolivarian Alliance', 'Latin American', 'Caribbean', 'Anez', 'Venezuela', 'Venezuelan', 'Venezuelan', 'Bolivia', 'October', 'Bolivia', 'two', 'the Port of Saigon', 'Cyclone Fani', 'last week', '127 mph', 'India', 'Odisha', 'West Bengal States', 'Bangladesh', 'Cyclone Fani', '4', 'second', 'five', 'Saffir-Simpson', 'May 3', 'Puri', 'Odisha', 'Bangladesh', 'May 10', 'Biju Patnaik International Airport', 'Bhubaneswar', 'the coming days', 'hundreds', '370', 'India', 'Bhubaneswar', 'May 5', 'Puri', 'the coming days', 'Odisha', '3,000,000', 'about 10,000', 'Bhubaneswar', 'Balasore', 'Bhadrak', 'Keonjhar', 'Mayurbhanj', 'May 5', 'Bhubaneswar', 'the coming days', 'Puri', '1,000,000', 'May 6', 'Indian', 'Paradip, Gopalpur, Dhamra', 'Visakhapatnam', 'Kolkata Port Trust', '24', '48-hours', 'May 3', 'Bangladesh', 'Chittagong', 'Mongla', 'Payra', 'May 4', 'India', 'May 4', 'Port of Paradip', 'India', 'Islamic', 'May 5', 'Bangladesh', 'working hours', 'National Aluminium Co Ltd', 'Reliance Industries Ltd', 'Indian Oil Corporation’s Paradip', '300,000 barrels', 'Oil and Natural Gas Corporation Limited', 'NTPC Ltd.', 'Talcher', 'Mahanadi Coalfields Ltd', '4.622 million ton', 'May 3', '20.123 million ton', 'May 2', 'the North Indian Ocean', 'April to December each year', 'South Asia', 'the first week of Ramadan', 'first', 'APM Terminals', 'the Port of New York', 'New Jersey', 'February 25', 'the entire day', 'February 26', 'Aptiv', 'Delphi) Wire & Cable Plant 1 and 2', 'Ciudad Victoria', 'Tamaulipas', 'February 7', 'the Industrial Union of Maquiladora Workers', 'Ciudad Victoria', '30 percent', 'Wednesday, January 16', 'Aptiv', 'Friday', 'Demosisto', 'Joshua Wong Chi-fung', 'Agnes Chow Ting', 'Cheng Chung-tai', 'Au Nok', 'Jeremy Tam Man-ho', 'at least 28', 'recent months', 'Joshua Wong', 'Agnes Chow', 'evening', 'the Admiralty area', 'The day', 'the Civil Human Rights Front', 'Saturday', 'Chater Garden', 'Central', 'Beijing', 'Liaison Office', 'Sai Wan', 'CHRF', 'Monday', 'Salisbury Garden', 'Kowloon', 'two-day', 'the Confederation of Trade Unions', 'Hong Kong', 'Beijing', 'Carrie Lam', 'the Central Co-ordination', 'Group', 'Hong Kong', 'Macau Affairs', 'Chinese', 'Xi Jinping', 'Hong Kong', 'five-year', 'Hong Kong', 'August 31, 2014', 'Occupy Central', 'later that year', 'thousands', 'the coming days', 'weeks', 'Hong Kong', '240', 'the Hospital Materno Los Andes', 'Arturo Valle', 'Balboa Garcia', '24-hour', 'Wednesday', 'May 8', 'El Alto', 'earlier in the day', 'Tuesday', 'May 7', '1:13N-103:30E', 'Malaysia', 'Singapore', 'VTIS', 'Jakarta Container Terminal', 'two', 'Ulsan', '18', 'Sunday', 'Stanwell', 'Surrey', 'Saturday', 'evening', '50-year-old', '19-year-old', 'Viola Avenue', 'Muslim', 'Tesco', 'Stanwell', 'Christchurch', 'New Zealand', 'last Friday', 'British', 'Neil Basu', 'Saturday', 'evening', 'Stanwell', 'Cannon Street Road', 'London', 'Friday', 'Asian', 'three', 'anti-Muslim', 'Basu', 'Friday', 'Christchurch', 'UK', 'Christchurch', 'the United Kingdom', 'Over 250,000', 'Wednesday, April 10', 'the Australian Council of Trade Unions', 'ACTU', 'Melbourne', 'At least 50,000', 'Trades Hall', 'Melbourne', 'Dozens', 'Friday, September 20', 'Queens Garden', 'Brisbane', 'Victoria Square', 'Adelaide, Parliament', 'Darwin', 'Forrest Place', 'Perth', 'Melbourne', 'Tens of thousands', 'Domain', 'Sydney', 'Parliament', 'Hobart', 'Glebe Park', 'Canberra', 'Geelong City Hall', 'Geelong', 'hundreds', 'Strand Park', 'Townsville', 'Queensland', 'the Todd Mall', 'Alice Springs', 'Northern Territory', 'dozens', 'May', 'about 17,500', 'Sydney', 'Sydney', 'at least three', 'Victoria Park', 'Sydney', 'Broadway', 'Parramatta Road', 'Parramatta Road', 'Parliament House', 'Melbourne', 'today', '26 January', 'hundreds', 'Spring Street', 'the First Fleet', 'British', 'Australia', 'the day', 'Brisbane', 'the Maritime Union of Australia Queensland', '27 February', '72-hours', 'third', 'three months', 'Transdev', 'the Burnley Tunnel', 'Melbourne', 'Monday', 'morning', 'Australian', 'Brisbane', 'today', '23 January', 'the Port Office Hotel', '40', '15 March', 'Canberra', 'Garema Place', '12:00-15:00', 'Brisbane', '13:00-15:00', 'Adelaide: Parliament of South Australia', '11:00-14:00', 'Darwin', 'Parliament House', '12:00-13:00', 'Hobart', 'Parliament House', '12:00-14:00', 'Melbourne', '12:00-14:00', 'Perth', 'St George’s', '11:00-13:00', 'Sydney', '12:00-14:00', 'Victoria', '4 January', 'Melbourne', '42C', 'Friday', 'Bendigo', '44C', 'Kerang', 'Mildura', 'up to 100', 'Victoria', 'the late afternoon', 'Mallee', 'Wimmera', 'Friday', '29 November', \"the 'Fridays\", '12:00', 'South Australian Parliament', 'Brisbane', 'Queens Gardens', 'Canberra', '28 November', 'Federal Parliament', 'Darwin', '36', 'Hobart', '12:30', 'Parliament Lawns', 'Melbourne', 'Victorian Parliament', 'Perth', '18:00', 'Yagan Square', 'Sydney', '100', 'William Street Woolloomooloo', 'Boeing Aerostructures', 'Australia', 'Port Melbourne', 'today', '25 November', 'hundreds', '226 Lorimer Street', 'five', 'one', 'Sydney', 'Thursday', 'the east coast', 'NSW Health', 'more than 40', 'The Rural Fire Service', 'RFS', 'at least 24 hours', 'several days', 'Australian', 'Adelaide', 'today', '3 September', 'The Bureau of Meteorology', 'South Road', 'Port Wakefield Road', 'Adelaide Airport', 'Broome', 'Thursday', 'Thursday', 'Friday', 'Category 2', 'Thursday', 'evening', 'a Category 3', 'Friday', 'Hutchinson Ports', 'Brisbane', 'Sydney', 'tomorrow', '17 January', 'last multiple days', 'The Construction, Forestry, Mining, Maritime and Energy Union', 'Manly Fast Ferry', 'Sydney', 'Wednesday 6 March', 'between 08:00 and 10:00', 'The Maritime Union of Australia', 'Friday', '20 September', 'Sydney', 'Melbourne', 'Brisbane', 'Perth, Adelaide', 'the White Bay Cruise Terminal', 'Sydney', 'today', '2 February', 'Robert Street', 'Balmain East', 'Up to 1,800', '19 March', 'Fremantle Terminal', 'Port Botany Terminal', 'Brisbane Terminal', 'Melbourne Terminal', '19', '22', '22', '23 March', 'DP World', 'Sydney', 'Approximately 2,400', 'Hornsby', 'Asquith', 'Mount Colah', '700', 'North Turramurra', 'Australian', 'Ausgrid', 'bush', 'more than 50,300', 'Sydney', 'Sydney', 'New South Wales', '4,600', 'the Oyster Bay', 'Kareela', 'Jannali', 'Sutherland', 'Sylvania', 'Miranda', 'Caringbah', 'Lilli Pilli', 'Port Hacking', 'Dolans Bay', 'Ausgrid', '15:30', 'Australia', '2 and 3 November', 'Saturday', 'Melbourne', 'Library', 'Perth', 'Murray Street Mall', 'Sydney', '13:00 and 15:00', 'Gold Coast', 'Sunshine Square', '16:00', '24 hours', 'Brisbane', 'Tuesday', 'afternoon', 'two', 'Brisbane', 'the Gold Coast', 'Kuraby Station', 'Beenleigh Station', 'Woodridge Station', 'Trinder Park Station', 'Wangaratta', 'Saturday 7 September', 'Yarra Trams', 'Collins Street', 'Docklands', 'Port Melbourne', 'Tuesday 9 April', 'Manly Wharf', 'Sydney', 'Wednesday', 'evening', 'Peak-hour', 'Quay', 'Manly', 'South Australia', 'Victoria State', 'The Bureau of Meteorology', 'at least 40C', 'At least two', 'Yorketown', 'Port Wakefield', 'South Australia', 'approximately 10,000', 'Hutchinson Ports', 'Brisbane', 'Sydney', 'tomorrow', '17 January', 'last multiple days', 'The Construction, Forestry, Mining, Maritime and Energy Union', 'Melbourne', 'today', '3 October', 'Flinders', 'Spencer', 'Darling Harbour', 'Sydney', '26 September', '10 October', 'Melbourne', 'hours between 10:00 and 14:00', 'Public Transport Victoria', 'PTV', 'Yarra', 'the 28 November and 5 December', '14:00', 'Melbourne', 'Yarra Trams', 'The Australian Council of Trade Unions', 'ACTU', '18 May', '4 May', 'Bundaberg', '10:30', 'Cairns', '17:00', 'Timothy Maloney Park', '13:30', 'Toowoomba', 'Railway Carpark', 'Russell Street', '11:00', '5 May', 'Gold Coast', 'Maryborough', '10:30', 'Sunshine Coast', 'Maroochydore', '09:30', '6 May', 'Brisbane', 'Wharf', 'Turbot', 'Spring Hill', 'Gladstone', 'Mackay', '09:45', 'Moranbah', '09:30', 'Rockhampton', 'Victoria Parade/Cambridge Street', '09:30', 'Townsville', 'Strand', 'the Sydney Central Business District', 'Liverpool Street', 'Harbor Street', 'Harbor Street', 'Friday', 'Turkish', 'two', 'earlier this week', 'the United Arab Emirates', 'one', 'Saudi', 'Jamal Khashoggi', 'Saudi Arabia', 'Istanbul', 'last year', 'Arab', 'Turkey', 'Turkey', 'Friday', 'Ankara', 'Abu Dhabi', 'Saudi Arabia', 'Arab', 'nearly two-year-old', 'Qatar', 'one', 'Turkey', 'Saudi Arabia', 'UAE', 'Doha', 'Islamist', 'the Muslim Brotherhood', 'Turkey', 'Justice', 'Development Party', 'AKP', '26-year-old', 'Mark Steven Domingo', 'Reseda', 'CA', 'Friday, April 26', 'Southern California', 'Domingo', 'Long Beach', 'the past weekend', 'Domingo', 'Santa Monica Pier', 'Jewish', 'Los Angeles', 'Long Beach', 'Friday', 'the Federal Bureau of Investigation', 'FBI', 'FBI', 'Domingo', 'March 2019', 'Islamic State', 'Domingo', 'United States Army', 'Islamic', 'Domingo', 'Long Beach', 'two', 'Christchurch', 'New Zealand', '50', 'Christchurch', 'Long Beach', 'Sri Lanka', 'Easter', '250', 'Christchurch', 'Poway', 'CA', 'one', 'Saturday, April 27', 'Jewish', 'Christchurch', 'Domingo', 'mosques', 'U.S.', 'the Department of Homeland Security', 'April 4', 'South Korean', 'P-Pioneer', 'two', 'North Korean', 'September 2017', 'East China Sea', 'the United Nations', 'North Korea', 'Busan', 'last October', 'six months', 'three', 'South Korean', 'UN', 'over 6,456', 'Hai Phong', 'Ho Chi Minh City', '2018', 'The Ministry of Transport', 'Vietnamese', 'six', 'March 12', 'Qingdao CIMC Special Vehicle Co., Ltd.', 'the Huangdao District Market and Quality Supervision Administration', '165,000 yuan', 'USD 24,595', 'EUR', '21,790', '100,000 yuan', 'EUR', '13,209', 'China', 'March 25', 'Huizhou', 'Xinghe Industrial Company Ltd', 'the morning of March 22', 'Batam', 'Riau Islands', 'January 25', 'Batam', 'Singapore', 'Batam', 'Indonesia', 'Indonesian', 'Batam', 'April 5', 'DP World Melbourne', 'April 10', '10:00 – 14:00', 'earlier in the week', 'the Enterprise Agreement', 'Australia', 'the Construction, Forestry', 'Mining and Energy Union', 'two', 'Port of Melbourne', 'the day', 'Nissan Motor', 'three', 'Oppama Plant', 'Yokosuka City', 'Kanagawa Prefecture', 'Yokohama Plant', 'Yokohama City', 'Honmoku', '11.30', 'September 9', 'Typhoon Faxai', 'the coming days', '12-hours', 'October 17', 'the Port of Busan', '0.5 days', 'October 30', 'the Port of Hong Kong', 'around 0.5 day', 'the Port of Hong Kong', 'around 0.5 day', 'the next 2-days', 'August 19', 'the Port of Hong Kong', 'around 0.5 day', 'the next 3-days', 'the Port of Ningbo', 'around 0.5 day', 'September 17 to 18', 'October 28', 'the Port of Shanghai', '0.5-day', 'October 29', 'August 19', 'the Port of Yantian', 'around 0.5 day', 'December 10', 'the Port of Yantian', '0.5-day', 'the next 2-days', 'the Port of Ningbo', 'around 0.5', 'August 19', 'the Port of Qingdao', 'the next 3-days', 'August 19', 'the Port of Shanghai', 'around 0.5', 'the next 3-days', 'August 19', 'the Port of Yangshan', 'Shanghai', 'about 0.5-1 day', 'the coming three days', 'Yangshan', 'August 28', 'the Port of Ningbo', 'around 0.5', '1.5 days', 'August 22', 'the Port of Yangshan', 'Shanghai', 'about 0.5-1 day', 'the next three days', 'Yangshan', 'October 28', 'the Port of Ningbo', '1-day', '0.5-day', 'October 29', 'March 27', 'the Port of Qingdao', 'November 13', 'the Port of Xiamen', 'about 1 day', 'April 2', 'Port of', 'Saigon', 'around 1–2 days', 'October 14', 'the Port of Saigon', 'around 1.5 to 2 days', 'September 16', 'the Port of Saigon', '1.5 to 2 days', 'the Port of Saigon', 'around 1.5 to 2 days', 'November 11', '1.5-2 days', 'the Port of Saigon', 'December 18', 'the Port of Hong Kong', 'about 12-hours', 'the next 2-days', 'December 18', 'the Port of Qingdao', 'about 0.5 days', 'the next 3-days', 'December 18', 'the Port of Tianjin', 'the afternoon', 'December 16', 'August 23', 'Port of Valencia', 'August 25', '12-hours', 'December 18', 'the Port of Yantian', 'about 0.5 days', 'the next 3-days', 'February 4', 'the Port of Shanghai', 'around 1 day', 'August 26', 'the Port of Yangshan', 'Shanghai', 'about 6 hours', '2-days', 'August 30', 'the Port of Shanghai', 'around 0.5 day', 'the next 3-days', 'September 3', 'the Port of Saigon', 'around 1.5 to 2 days', 'October 30', 'the Port of Shanghai', 'the Port of Saigon', '1-day', 'August 23', 'the Port of Yantian', '6-hours', 'December 9', 'the Port of Chittagong', 'up to 4 days', 'December 9', '12', 'the Port of Shanghai', 'around 0.5 days', 'the Port of Nansha', 'Guangzhou', 'around 12 hours', 'the Port of Chiwan', 'Shenzhen', 'around 12 hours', 'the Port of Hong Kong', 'around 12 hours', 'the Port of Yantian', 'around 12 hours', 'Intelligence', 'Everstream Analytics', 'July 30', 'Qingdao', 'around 12 hours', 'August 1', 'Intelligence', 'Everstream Analytics', 'August 2', 'Ningbo', 'around 12 hours', 'XIAZHI Channel', '19:00 to 22:30', 'August 1', 'November 28', 'the Port of Busan', '12 hours', 'the next 3 days', 'September 24', '2-days', 'the Port of Sydney', 'Hamburg Sud', 'Sealand', 'Washington', '943', 'East', 'Veracruz', 'Port of New Orleans', 'the United States', 'Port of Sines', 'Portugal', 'November 14', 'February 27', 'Alexandria', 'El Dekheila Ports', 'Northeast', 'the evening of March 3', 'Maher Terminal', 'GCT Bayonne', 'New York', 'Red Hook', 'March 4', 'October 8', 'Sydney Patrick Terminal', 'Australia', 'the last few weeks', 'March 11', 'the Port of Jeddah', 'around 1 to 2-days', 'March 15', 'the Port of Sydney', 'the coming hours', 'January 17', 'the Port of Alexandria', 'January 13', 'the next day', 'weekly', 'August 29', 'Sydney Patrick Terminal', 'Australia', 'the last few days', 'the end of week 38', 'Hamburg Sud', 'Msc Ariane', 'South', 'Asia', 'Port of Yokohama', 'Japan', 'November 17', 'North America’s', 'west coast', 'December 12', 'Alexandria', 'Egypt', 'the Port of Alexandria', '10:55', 'December 12', 'December 12', 'Alexandria', 'Egypt', 'the Port of El-Dekheila', '10:55', 'December 12', 'January 18', 'the Port of Antwerp', 'Italian', 'November 22', 'Italian', 'Liguria', 'Genoa', 'Savona', 'November 23', '00:00 to November 24', '00:00', 'Monday, November 25', 'Italian', 'November 22', 'Italian', 'Liguria', 'Genoa', 'Savona', 'November 23', '00:00 to November 24', '00:00', 'Monday, November 25', 'August 20', 'Port of Colombo', 'season', 'March 14', 'the Port of Alexandria', 'Egypt', 'Houston City Hall', 'Bagby St', 'Walker St', '12:00 PM', 'Friday, March 15', 'Strike TX', 'US', 'Thursday', 'the third day', 'four-hour', '08:00', 'Khulna', 'Jessore', 'Chittagong', 'Khulna', 'Chittagong', '24-hour', 'Chittagong', 'the Detective Branch', 'the Bangladesh Road Transport Workers Federation', 'BRTWF', '18:00', '25 April', '24-hour', 'five', 'Chittagong', '06:00', '28 April', 'Barcelona Metro', 'two-hour', 'four days', 'Monday, February 25', 'between 7:00 AM and 9:00 AM', '4:00 PM', '6:00 PM', '10:30 PM', '12:30 AM', 'each day', 'Barcelona', 'Friday, January 18', 'Tuesday', 'Cabify', 'at least nine', 'Barcelona Metro', 'Monday, April 29', 'Only 40 percent', 'peak hours', '6:30', '9:30 AM', '4:00 PM', '8:00 PM', 'Only 20 percent', '6:00 AM', '6:30 AM', '9:30 AM', '9:35 PM', '11:55 PM', 'four hours', 'Monday, April 8', 'December 16', 'German', 'Rotterdam', 'Netherlands', 'Karlsruhe', 'Germany', 'Trechtingshausen', 'Germany', '03:45', 'December 14', 'Bingen', 'one-hour', 'December 15', 'Battery Park', 'Foley Square', 'U.S.', 'UN', 'the UN Climate Summit', 'Monday, September 23', 'week-long', 'Friday, September 20', 'Foley Square', '12:00 PM', 'Battery Park', '1:00 PM', 'Lafayette St', 'Reade St', 'Broadway', 'Ann St', 'Nassau St', 'Broad St', 'Beaver St', 'Battery Park', '5:00 PM', 'hundreds of thousands', 'New York City', 'Tens of thousands', 'more than 25', 'Belgium', 'the Global Strike', 'Future', 'Brussels', 'thousands', 'the Gare du Nord', 'Place Rogier', 'Gare du Midi', '3:30-4:00 PM', 'Ghent', 'Antwerp', 'Liege, Hasselt', 'Leuven', 'La Neuve', 'Kortrijk', 'Roselare', 'Arlon', 'Charleroi', 'Zottegem, Sint-Niklaas', 'Vilvoorde', 'Dendermonde, Mons', 'Izegem', 'Zwevegem', 'Marche', 'Namur', 'Esneux', 'Bornem', 'Philippeville', 'Lokeren', 'Antwerp Port', '13 February', '22:00', '12 February', '22:00', '13 February', 'millions', 'the Brussels-Willebroek Canal', 'Thursday', 'morning', 'The Humbeek Bridge', 'Grimbergen', 'Brussels', 'Antwerp', 'this morning', 'Antwerp', 'the Scheldt River', 'Antwerp', '14', 'two', 'at least 300', 'the Port of Antwerp', 'Thursday', '19 September', 'February 26', 'Freeport', 'Bahamas', 'February 26', 'Gioia Tauro', 'last week', '24-hours', 'May 7', 'the Port of Valencia', '0.5', '1 days', 'the Port of Algeciras', 'January 14', 'the Port of Algeciras', 'Spain', 'Last week', 'Christmas', 'South Africa', 'the Port of Durban', 'February 27', 'up to 72 hours', 'April 25', 'the Port of Savannah', 'United States', 'February 18', '24-hours', 'Port of Ho Chi Minh', 'December 11', 'Port of Jeddah', 'December 13', 'Port of Manila', '3-5 days', '95 percent', '4-5 days', 'higher than 95 percent', 'January 2018', 'the Manila International Container Port', 'Manila', 'Batangas Port', 'May 8', '6', 'Crane 16', 'Manila International Container', \"MICT's North Port\", 'Crane 16', 'February 4', 'Port of Yantian', 'pre-Chinese New Year', 'approximately 0.5 days', 'Deutsche Bahn', 'Hanover', 'Bremen', 'week 39', 'mid-November', 'the end of November, week 47', 'week 39', 'first', 'Port of Qingdao', 'China', 'September 25', 'Tanjung Pelepas', 'Malaysia', 'October 10', 'week 47', 'first', 'Port of Qingdao', 'November 11', 'Port of Tanjung Pelepas', 'December 5', 'Europe', 'week 45', 'mid-December', 'week 2 of January 2020', 'MSC Isabella', 'Port of Felixstowe', 'January 6', 'first', 'Port of Algeciras', 'January 19', 'Margrethe Maersk 945E', 'Port of Felixstowe', 'November 11', 'first', 'Port at Algeciras', 'November 17', 'four', 'Callao', 'Peru', 'March 19, 2019', '7 a.m.', 'September 3', 'German', 'the Port of Hamburg', 'Germany', 'the evening of', 'September 3', 'December 24', 'Border Force', '2', 'GBP 1.75 million', '2.05 million', 'USD 2.27 million', 'China', 'the London Gateway Port', 'Milton Keynes', 'Pre-Clearance Center', 'the Bosphorus Strait', 'Friday', 'the Rumeli Hisari', 'Asiyan', 'Liberian', 'Iridum', 'Ambarli', 'Kota Satria', 'the Gulf of Guinea', 'February 21, 2019', 'More than four', 'Two', 'two', 'the Nigerian Navy', 'Onne', 'February 22', 'February 28', 'Singapore', 'ETA', 'March 27', 'thousands', 'Brazil', 'the National Union of Students', 'UNE', 'at least 23', '3:00 PM', 'Parque Farroupilha', 'Florianpolis', 'Santa Catarina', '8:30 AM', 'the Our Lady of Exile', 'St. Catherine', 'Alexandria Metropolitan Cathedral', 'Curitiba', 'Parana', '11:00 AM', 'Praca Santos Andrade', 'Sao Paulo', 'Sao Paulo', '10:00 AM', 'Praca Oswaldo Cruz', 'Campinas', 'Sao Paulo', '2:00 PM', 'Rosario Square', 'Belo Horizonte', 'Minas Gerais', '9:00 AM', 'Viaduto Santa Tereza', 'Uberlandia', 'Minas Gerais', '8:30 AM', 'Terminal Central', 'Rio de Janeiro', 'Rio de Janeiro', 'Nossa Senhora da Candelaria Church', 'Vitoria', 'Espirito Santo', '8:00 AM', 'Praca de Porto de Santana', 'Goiania', '8:30 AM', 'Goiania Cathedral', 'Brasilia', 'Federal District', '3:00 PM', 'Praca', 'Tres Poderes', 'Cuiaba', 'Mato Grosso', '3:00 PM', 'Praca Cultural', 'Manaus', 'Amazonas', '3:00 PM', 'Praca da Saudade', 'Belem', 'Para', '8:00 AM', 'Santarem', 'Para', '8:00 AM', 'Praca Sao Sebastiao', 'Salvador', 'Bahia', '8:00 AM', 'Praca Campo Grande', '8:00 AM', 'Praca', 'Ceara', '8:00 AM', 'Avenida Dioguinho', 'Iracema Beach\\n \\tNatal', 'Rio Grande', 'Norte', '8:00 AM', 'Praca Herois dos Pescadores', 'Sao Luis', 'Maranhao', '10:00 AM', 'Areinha', 'Joa Pessoa', 'Paraiba', '2:00 PM', 'Nossa Senhora das Neves Church', 'Campina Grande', 'Paraiba', '8:30 AM', 'the Diocesana Nossa Senhora da Concei', 'Alagoas', '9:00 AM', 'Praca Sinimbu', 'Jair Bolsonaro', 'Amazon', 'tens of thousands', 'Friday, September 20', 'the same day', 'Global Climate Strike', 'Sao Paulo', 'Rio de Janeiro', 'Brasilia', 'Distrito Federal', '2:00 PM', 'Rodoviaria', 'Plano Piloto', 'Rio de Janeiro', 'Rio de Janeiro', '2:00 PM', 'the Legislative Assembly of Rio de Janeiro', 'ALERJ', 'Curitiba', 'Parana', '5:30 PM', 'Praca Santos Andrade', 'Porto Alegre', '4:00 PM', 'Praca Marechal Deodoro', 'Sao Paulo', 'Sao Paulo', '4:00 PM', 'Museu de Arte de Sao Paulo', 'Sao Carlos', 'Sao Paulo', '3:30 PM', 'Praca XV de Novembro', 'Goiania', 'Goais', '4:00 PM', 'Parque Flamboyant\\n \\tBelem', 'Para', '5:00 PM', 'Escadinha', 'October 9', 'the Municipal Transit Authority', 'Guayaquil', 'Ecuador', 'Unidad Nacional', 'Duran', 'Samborondón', 'La Puntilla', 'Santa Ana Hill', 'Pedro Menéndez', 'Gilbert Avenue', 'Malecon Avenue', 'Loja Street', 'the Maritime Port', 'Guayaquil', 'Guayas', 'El Triunfo', 'Bucay-Pallatanga-Riobamba', 'Moreno', 'CityCat', 'Brisbane', 'Friday', 'February 8', 'the Maritime Workers Union', 'Transdev', 'three-day', 'Brisbane', 'the Maritime Union', 'CityCat', '24-hour', 'Brisbane City', 'Transdev', 'three-day', 'Friday', 'British', 'Filipino', 'Tukuran', 'Zamboanga del Sur Province', 'Mindanao', 'Celebes Sea', 'six', 'two', 'At least two', 'the day', 'Abu Sayyaf', 'Mindanao', 'Basilan', 'Sulu', 'Tawi-Tawi', 'Celebes Sea', 'Sulu Sea', 'four', 'Samal Island', 'Mindanao s Davao City', '2015', 'Bohol', 'six', 'Abu Sayyaf', 'dozens', 'Malaysia', 'two', 'Sulu', 'Celebes Sea', 'September 6', 'U.S.', 'Buckeye Pipeline Partners', 'Freeport', 'Bahamas', 'Hurricane Dorian', 'Dorian', 'Buckeye Partners', 'L.P.', 'The Houston Ship Channel', 'the Intercontinental Terminals Company', 'Buffalo Bayou', 'Greek', 'Malaysian', 'Polaris', '06:30', 'February 9', 'Johor Strait', 'Singapore', 'Australia', 'Tanjung Pelepas', 'Malaysia', 'Polaris', '08:30', 'Jsw Salem', 'India', 'Virginia Beach', 'January 10', 'five hours', 'San Antonio', 'Westbuitenhaven at Port of Terneuzen', 'August 28', 'half an hour', 'Terneuzen', 'Vissingen', '02.00', 'August 29', 'Singapore', 'RTM Dampier', 'Monday February 11, 2019', 'Tianjin', 'China', 'Heina', 'February 17', 'Juan de Fuca Strait', 'Vancouver', 'Vancouver', 'February 21', 'Port of Longkou', 'China', 'January 25', 'GOLDEN BRIDGE 2', 'the morning', 'December 3', 'Gulf of Siam', 'Chao Praya', 'Bangkok', 'some 100 tons', '20 tons', '4-kilometer', 'The Royal Thai Navy', 'November 29', 'about two weeks', 'the average of five days', 'the past few weeks', 'Busan', 'Ulsan', 'Tropical Storm Mitag', 'Friday', 'bush', 'Sydney', 'New South Wales', 'NSW', 'Warragamba', 'the Blue Mountains', 'Lake Burragorang', 'around 80 percent', 'Sydney', 'the Warragamba Dam', 'bush', 'two', 'Sydney', 'Level 2', 'NSW', 'Unifor', 'the Coast Mountain Bus Company', 'Vancouver', '72-hour', 'Monday night', '28 October', 'midnight', '31 October', 'Montreal', 'today', 'Canada', 'Friday', '27 September', \"Queen's Park\", 'Toronto', '11:00', 'Confederation Park', 'Ottawa', '11:00', 'City Hall', 'Vancouver', '13:00', 'Legislative Assembly', 'Victoria', '12:00', 'Alberta Legislature Grounds', 'Edmonton', '13:00', 'Manitoba Legislature Building', 'Winnipeg', '12:00', 'Victoria Square Park', 'Halifax', '11:00', 'the Statue de George-Etienne Cartier of Parc du Mont-Royal', 'Montreal', '12:00', 'Montreal', 'an estimated 300,000', 'Justin Trudeau', 'Greta Thunberg', 'GCT Vanterm', 'Vancouver', 'the Langdale Terminal', 'Tuesday', 'morning', '26 March', 'Langdale', 'Horseshoe Bay', 'West Vancouver', '17:30', \"L'Assomption\", 'Montreal', 'Wednesday', 'Up to a dozen', \"Boulevard de l'Ange-Gardien\", \"Rang L'Achigan\", 'today', '15 March', 'the ‘Global Climate Strike For Future', 'Calgary', 'Municipal Plaza', '12:00', 'Edmonton', 'Alberta Legislative Building', '12:00', 'Ottawa', '12:00', 'Quebec', 'City Hall', '13:00', \"St. John's\", 'MUN University Center', 'Toronto', '12:30', 'Vancouver', 'University Boulevard', '12:00', 'tonight', '9 November', 'Port Union', 'Toronto', 'two', 'Port Union', 'Island', 'The Ontario 401 Express', 'Port Union Road', 'Port Union Road', 'Kingston', 'Island', 'Canada', 'Metro Vancouver', 'the Sunshine Coast', 'Fraser Valley', 'East Vancouver Island', 'Friday', 'morning', '22 February', 'five to ten centimeters', '15', 'tonight', '10 September', 'Coal Harbour', 'Vancouver', 'West Pender Street', 'West Pender Street', \"Yantian Express'\", 'some 1,775', 'Halifax', 'Hapag-Lloyd-owned', 'Sri Lanka', 'several days', 'Friday', '4 January', '1,800 km', 'Cape Cod', 'Mass.', 'December 2', 'RCC', 'Brest', 'France', 'Le Havre', 'Fort-de-France', 'Martinique', '2195', 'January 14, 2019', 'Emden', 'Grimsby', 'two', 'January 15', 'Hoeg Traveller', 'Savannah River', '21.00', 'December 7', '1.5 hours', '22.30', 'two', 'around 00.30', 'December 8', 'the Port of Yokohama', 'Typhoon Faxai', 'this week', 'the Celtic Sea', 'the afternoon', 'December 8', 'Rotterdam', 'The Netherlands', 'Dublin Ireland', '12', '23.30', 'Dublin', 'the afternoon', 'December 9', 'the United States', 'over 20 percent', 'Ports', 'Los Angeles', 'Long Beach', 'December of 2018', 'Union Pacific Railroad', 'Memphis', 'TN', 'Joilet', 'IL', 'Chinese', 'ten percent to', '25 percent', 'January 1, 2019', 'spring', 'March 1', 'February', 'Asia', 'February', 'several weeks', 'the Lunar New Year', 'February 25, 2018', 'Hamburg Sud', 'MV Rio Bravo', 'Sydney', 'Australia', 'December 10', 'Dalian Port', 'midnight', 'December 10', 'October 21', '01:40', '9159646', 'Karachi Harbor', 'Xin', 'Berth 25', 'Diyala', 'Berth 26', 'the morning', 'October 22', 'December 27', 'Li Fung', 'Kaohsiung', 'Taiwan', 'December 24', 'Busan', 'South Korea', 'the Keelung Port', 'Taiwan', 'Keelung', '14:00', 'December 26', 'Kazim Dede', 'December 24', 'Crete', 'December 25', 'Kalo Limenes', 'December 26', 'Cosco', 'Da Xin', 'Indian', 'Diyala', 'Karachi', 'around 01.40', 'October 21', 'Berth', 'first', 'October 22', '1', 'April 18', '10:30am', 'Pictor', '2 meters', 'Later in the day', '1:30pm', 'Jobayer', 'Chittagong Port', 'April 9', 'German', 'BBC', 'NOK', 'Kiel Holtenau', 'Germany', '6:45 am', 'April 7', 'Rotterdam', 'Netherlands', 'Olesia', '244700130', 'Antwerp', '\"Perseus\"', 'Rotterdam', 'Easter', 'Scheldt', 'Ouwerkerk', 'Stavenisse', 'Olesia', 'the Krammer Lock in Bruinisse, Zeeland', 'February 20', 'Olesia', 'Krimpen/Rotterdam', 'Perseus', 'Hans Weert', '8.50pm', 'March 13', 'March 15', 'the Saint-Petersburg Ship Safety Center', 'March 15', 'Manaus', 'Brazil', 'April 6', 'March 4, 2019', 'Katharina', 'Otterndorf', 'Bennet', 'Bremerhaven', 'Hamburg', 'the Athabaska Quay', '10.30 p.m.', 'December 15', 'Puffy', 'the Salamis Island of Piraeus', 'December 13', 'Ravenna', 'the Aegean Sea', 'Ampelakia', 'September 9', 'Bungo Princess', 'IMO 9496654', 'Yokohama', 'March 28', 'Leo Iris', 'IMO 9709001', 'the Island of Stroma', '3:30am', 'March 29', 'South Ronaldsay', 'Orkney', 'Norfolk', 'Virginia', 'Swinoujscie', 'Poland', 'Wilhelmine', 'November 30', 'the Balearic Sea', 'Algeciras', 'Marseille', 'SAR', 'Port of Palamos', 'December 2', 'December 5', 'Marseille', 'Intelligence', 'Everstream Analytics', 'approximately 10am', 'April 21', 'Greenwich Bridge', 'IMO 9302085', 'Lamma Island', 'the Hong Kong Marine Department', 'Singapore', '8pm', 'the same day', 'Intelligence', 'Everstream Analytics', 'April 8', 'Grande San Paolo', 'IMO 9253208', 'the Valongo Container Terminal', 'the Port of Santos', 'Port', 'April 10', 'August 30', 'approximately 17:00', 'UTC', 'IMO 9647382', 'the Buffalo Rock Light Beacon', 'the Singapore Strait', 'September 5', 'Joy H', 'the Margreth Port', 'San Giorgio', 'Nogaro', 'February 23, 2019', '12.50 p.m.', 'Buso', 'Alexandria', 'Porto Nogaro', 'the recent days', '6.20 meters', 'Margheth harbour', 'around 23.20', 'October 12', 'Kawasaki', 'Yokohama', 'Japan', 'Typhoon Hagibis', 'At least one', 'seven', 'Four', 'December 16', 'Nanji', 'Wenzhou Province', 'East China Sea', 'Fujian', 'Shanghai', '11', '17.30', 'the same day', 'Anna G', 'January 7, 2019', '8.30 a.m. NW of Cuxhaven', 'Rotterdam', 'Husum', 'Tiona', 'late on March 15', 'English', 'Ramsgate', 'French', 'SAR', 'Abeille Languedoc', 'the afternoon of March 16', 'the French Port of Dunkirk', 'Rotterdam', 'Spain', 'April 25', 'IMO 9105841', 'the Humber Estuary', 'Whitton', 'Antwerp', 'Mersin', 'April 9', 'noon', 'the Mersin Container Terminal', 'April 10', 'E.R. Kobe', '9222974', 'SAR', 'February 13', 'first', 'Haiphong', 'Vietnam', 'Qingdao', 'China', '3', 'Hong Kong', '3', 'February 23', 'Shanghai', '43', 'Luhuashan', 'March 5', 'SAR', 'March 15', 'Waigaoqiao', 'Shanghai', 'March 19', 'afternoon', 'Spanaco Progress', '6,000 tons', '2', '4', 'CIB Brest', 'Belle-Ile', 'Port Said', 'February 9', 'Grande Roma', 'the English', 'March 17', 'Isle of Wight', 'Antwerp', 'Southampton', 'March 18', 'Intelligence', 'Everstream Analytics', 'two', 'Rownham Motorway Services', 'M27', 'Southampton', 'October 8', '15', 'Intelligence', 'Everstream Analytics', 'Chinese New Year', 'the United States', 'the Port of Vancouver', '85%', '80%', 'Deltaport', '7+ days', 'Centerm', '3-5 days', 'Vanterm', '5-7 days', 'weeks', 'April 17', 'Rodrimar S.A.', 'the Port of Santos', 'April 17', 'Cais', 'Saboo', 'the Port of Santos', 'Intelligence', 'Everstream Analytics', 'January 15', 'Le Havre', 'France', 'today, Wednesday, March 20, 2019', 'the Guardia Chalaca', 'Callao', '6:00 a.m.', 'Garibaldi', 'the end of the', 'Guardia Chalaca', 'One', 'March 31', '7', 'Avenida Augusto Severo', 'Parque Sao Vicente', 'Santos', 'March 29', 'Sao Vicente', 'Brazil', 'February 11', 'GTL Peru & America', 'February 18', 'first', 'the APM Terminal', 'Callao', 'the Transport and Communications Ministry', 'Peru', 'Feburary 18', 'March 27', 'Zhukov Avenue', \"St. Petersburg's\", 'Kirovsky District', 'March 27', 'VAT', 'the day', '2017', 'Kirovsky District', 'Peru', 'more than 1,000', 'Xiaomi', 'more than USS 200,000', 'EUR', '179,200', 'Circuito de Playas', 'last Wednesday', 'April 23', 'Miraflores', 'Callao', '500', '7', '500', 'Cartagena Colombia', 'February 18', 'Albonoz', 'Mamonal', 'Cartagena', 'November 4', 'Dal Kalahari', 'the Port of Durban', 'Europe', 'Cape Town Northbound', 'Port of Algeciras', 'Santa Barbara', '195B', 'Europe', 'April 4', 'Zheng Rong', 'the Juan de Fuca Strait', 'British Columbia', '4 days', 'Singapore', 'ETA', 'May 2', 'MV “San Clemente” Voyage 9103S / 9103N', 'Peruvian Customs', 'Callao', 'Peru', 'Hapag-Lloyd', 'Peruvian Authorities', 'Puerto Angamos', 'Valparaiso', 'Angamos', 'Valparaiso', 'Vessel', 'Callao', 'February 25', 'Forever Lucky', 'Bataan Port', 'Philippines', 'Palawan', 'January 7, 2019', '17', 'Santos', '\"Sea Lion', '9345829', 'February 20', 'High Court', 'Chittagong', 'February 14', '50,600 metric tons', 'Helvetia', 'January 23, 2019', 'Hisaronu Bay', 'Marmaris', '9 a.m.', 'Hereke', 'Alexandria', 'January 24', 'Canka', 'approximately 4.9 miles', 'Aegina', 'Ambarli', 'Annaba', 'Algeria', 'January 8, 2019', '3 a.m.', 'March 5', '8 kilometers', 'Sao Paulo', 'Santos', 'March 5', 'Carnaval', 'Guaruja', 'the Port of Santos', 'Brazil', 'Santos', 'Sao Paulo', 'Thousands', 'Catalonia', 'Thursday', '12', 'Barcelona', 'Plaza Catalunya', 'Plaza Universitat', 'Avenida Diagonal', 'Avenida Meridiana', 'Gran Via', 'Calle de Sants', 'Ronda General Miter', 'Plaza Lesseps', '500', 'Girona', 'Lleida', 'Lleida', 'the University of Lleida', 'Tarragona', 'four', '28', '12', 'Savona', 'A6', 'Altare', '100 foot', 'Altare', 'Savona', 'Monday, November 25', 'Italy', 'Genoa', 'Bormida', 'Venice', 'Vaporetti', 'Tuscany', 'Rome', 'Venice', '170', 'Pisa', 'above five feet', 'Sunday, November 17', 'Venice', 'below three feet', 'Monday, November 18', '70 percent', 'Sunday, November 24', 'the Civil Protection Department', 'a Red Alert', 'Liguria', 'Genoa', 'Piedmont', 'an Orange Alert', 'Piedmont', 'Marche', 'Lazio', 'Veneto', 'Yellow', 'Italy', 'Gaeta', 'Two', 'the weekend', 'Italian', 'at least one', 'DeRidder', 'Alexandria', 'The National Weather Service', 'Alexandria', 'Pineville', 'Stovall Rd', 'Cloverleaf Blvd', 'Walmart', 'Virginia', 'the weekend', '6 hours', 'Vessel', 'Hurricane Dorian', 'Charleston', 'Charleston', 'February 18', '06:00 to 18:00', 'Charleston', 'Columbus Street', 'Union Pier', 'Veterans Terminals', 'the day', 'the Wando Welch Terminal Warehouse', 'the North Charleston Terminal', 'Dominion Energy', 'Berkeley Electric Cooperative', 'Charleston County', 'Hurricane Dorian', 'December 4', 'Lanxess', 'King Street Extension', 'Charleston', 'South Carolina', 'midnight', 'Interstate', 'October 7', 'approximately 12:00', '5', '200-liter', 'the Denholm Handling', 'Dock Road', '2 hours', 'South African', 'September 7', 'five', 'millions of rand', 'the Port of Durban', 'last month', 'Cato Ridge', 'up to 10 percent', 'Chennai', 'one-day', 'Wednesday', 'the Tamil Nadu Secretariat Association', 'Dominion Energy', 'Chesapeake', 'Virginia Beach', 'Hurricane Dorian', 'Chicago Public Schools', 'CPS', 'at least 30,000', 'the Chicago Teachers Union', 'Thursday, October 17', '361,000', 'CPS', 'the day', 'Schools', 'CPS', 'Thursday', 'CPS', '16 percent', 'five-year', '15 percent', 'a period of three years', 'the last year', 'Oklahoma', 'California', 'Tennessee', 'Oregon', 'West Virginia', 'between one to two weeks', 'Chicago', 'Thousands', 'the Union Portuaria de Chile', 'approximately 20', 'Chile', 'Friday', 'Chile', 'Valparaiso, Iquique, Tocopilla', 'Antofagasta', 'Chanaral', 'Caldera', 'Huasco', 'Ventanas', 'San Antonio', 'Penco', 'Lirquen, Saint Vincent', 'Talcahuano', 'Huachipato', 'Corral', 'Puerto Montt', 'Chacabuco', 'Calbuco', 'Punta Arenas', 'The United States', 'today', '15 November', '74 kilometers', 'San Antonio', '14.7 kilometers', 'today, 31 March', 'AFP', 'the ‘No + AFP', '11:00', 'Antofagasta', 'Municipalidad', 'Arica', 'Avenida Diego Portales', 'Concepción', 'Plaza de la Independencia', 'Copiapó', \"Calle O'Higgins\", 'Curicó', 'Punta Arenas', 'Rancagua', 'Plaza de los Héroes', 'Santiago', 'Italia', 'San Antonio', 'Plaza De Barrancas', 'Talca', 'Plaza Victoria', 'Valdivia', 'Terminal de Buses', 'Anfión Muñoz', 'Chile', 'today', '15 March', 'Arica', 'Calama', 'Castro', 'Chillan', 'Osorno', 'Ovalle', 'Puerto Montt', 'Punta Arenas', 'San Felipe de Aconcagua', 'Santa Cruz', 'Santiago', 'Temuco', 'Valdivia', 'Valparaiso', 'Rancagua', 'Victoria', 'recent weeks', 'Beijing', 'Ottawa', 'Canadian', 'China', 'March 1', 'China', 'General Administration of Customs', 'GAC', 'Richardson International', 'Canada', 'China', 'Canadian', 'March 22', 'Chinese', 'Canadian', 'new canola', 'second', 'Canadian', 'Viterra', 'Glencore Plc', 'March 26', 'Chinese', 'March 7', 'Richardson International’s', 'Dalian', 'Nanning', 'Shenzhen', 'Guangzhou', 'March 26', 'Chinese', 'the leptosphaeria maculans bacteria', 'Viterra', 'Dalian', 'Nanning', 'Canadian', 'Chinese', 'Vancouver', 'last year', 'Chinese', 'Richardson', 'Viterra', 'Beijing', 'Ottawa', 'Canadian', 'Chinese', 'Richardson', 'Viterra', 'the Canadian Food Inspection Agency', 'CFIA', 'March 25', 'Canadian', 'Canadian', 'Canadian', 'China', 'the World Trade Organization', 'Canadian', 'China', 'Canadian', 'Richardson', 'April 3', 'Canada', 'third', 'China', 'Canola', 'Europe', 'Canada', 'about 40 percent', 'China', '4.32 million metric tons', 'canola', 'last year', 'second', 'third', 'China', 'Beijing', 'Canadian', 'Chinese', 'Canadian', 'Australian', 'last month', 'Canberra', 'Beijing', 'December 30', 'the Chinese State Council', 'December 20', 'the Guangdong Xichong Port', 'Shenzhen', 'December 30', 'the Chinese State Council', 'December 20', 'the Meisha Port', 'Shenzhen', 'January 26', 'China', 'five--year', '12.5', '222 percent', 'the European Union', 'USA', 'South Korea', 'June 19', 'China', 'Commerce Ministry', 'Beijing', 'the United States', 'South Korea', 'the European Union', 'Jilin Petrochemical', 'China National Petroleum Corp', 'Shanghai Sinopec Mitsui Elastomers Co. Ltd.', 'EPDM', 'two', 'EPDM', 'U.S.', 'South Korea', 'European Union', 'China', 'three', 'almost 80%', 'China', 'April 22', 'China Post Express Logistics Company Ltd.', 'April 21', 'April 21', '25', 'April 23', '70th', 'the People’s Liberation Army Navy', 'Qingdao', 'Shandong', 'Qingdao', 'China Postal Express & Logistics Co., Ltd.', 'October 8', 'the China State Post Bureau', 'seven', 'Shanghai Jiajia Express Company', 'Shandong Guangtong Express Company', 'Xinrui International Freight Forwarding Company', 'Shanghai', 'Shandong Guantong International Freight Forwarding Company', 'Xinjiang', 'Gain Logistics Company', 'Shanghai', 'Friday', 'morning', 'Typhoon Lingling', 'S20', 'the Hongxu Road', 'Yan’an Elevated Road', 'Xuhui', 'Changning', 'Minhang', 'Chinese', 'Guangzhou', 'today', '18 February', 'early this morning', 'Yuexiu', 'Liwan', 'Tianhe', 'Haizhu', 'Huangpu', 'Zengcheng', 'Panyu', 'this evening', 'tomorrow morning', 'Chinese', 'Russia', 'Qingdao', 'today', '29 April', 'Qingdao', 'two', 'Last year', 'Xi Jinping', 'China', 'first', 'Friday', '15 March', 'Shanghai', 'the Lycée Français', 'Qingpu', 'Chaoyang', 'Liaoning Province', 'Nali Garden Courtyard', 'Hangzhou', 'Zhejiang Province', 'West Lake', 'Shenzhen', 'Guangdong Province', 'Merchiston International School', 'January 10', 'Chinese', 'Jie Hai', 'Ningbo', 'the Bay of Hangzhou', 'China', 'January 6', '4', 'recent weeks', 'the Port of Dalian', 'Northeast', 'China', 'Australian', 'Chinese', 'two', 'Beijing', 'Australian', 'China', 'Australian', 'Australian', '40-days', 'between 5 to 20 days', 'Dalian', 'China', 'Australia', 'Chinese', 'recent years', 'Australian', 'Chinese', 'first', 'China', '2017', 'Indonesian', 'the Port of Dalian', 'Chuanshon', 'Ningbo Port', 'Zhoushan LNG Import Terminal', 'Shanghai', 'Beijing', 'Northeast', 'China', 'November 2018', 'one-third', 'China', 'early 2019', 'Dalian', '12 million tons', '2019', 'last year', '14 million tons', 'half', 'Australia', 'Dalian', '7 percent', 'China', '2018', 'China', 'Chinese', 'the Lunar New Year', 'China', 'Australia', 'China', 'Chinese', 'US', 'ChinaOn 29', 'January', 'the US Justice Department', 'China', 'Huawei Technologies', 'Meng Wanzhou', 'Meng', 'Canada', 'Canadian', 'Meng', 'Huawei', 'China', 'foreign ministry', 'US', 'Chinese', 'Canada', 'Canada', 'Canadian', 'China', 'Meng', 'Vancouver', 'Canada', 'early December 2018', 'China', 'Liu', 'Washington, DC', 'US', 'US', 'Robert Lighthizer', 'US', 'Chinese', 'Huawei', 'two', '1 March', 'US', '24 September', 'USD200 billion', 'Chinese', '10% to 25%', 'China', 'Xinhua', '30 January', 'Chinese', 'annual', \"National People's Congress\", 'early March', 'Chinese', \"the US Trade Representative's\", 'Section 301', 'US', 'China', 'September', '10%', 'US', 'State', 'Defense', 'US', 'US', 'Chinese', 'Chinese', 'US', 'US', 'China', 'IHS Markit Foresight', '2019', 'Friday', 'Hong Kong', 'the People s Liberation Army', 'PLA', 'Victoria Harbour', 'quarterly', 'one', '1,000', 'quarterly', 'Friday', 'Victoria Harbour', 'around 6,000 to 7,000', 'PLA', 'Hong Kong', 'Hong Kong', 'Friday', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', 'Kuala Kuaru', 'Penang Island', 'December 5', 'October 1', 'the Chittagong Customs House', 'Continental Traders', 'Bangladesh', 'COSCO Shipping', 'Chittagong', 'March 18', 'Sao Paulo', 'between March 16 and 17', 'Anchieta', 'the Baixada Santista', 'Caraguatatuba', 'Santos', 'Sao Paulo', 'the Port of Vancouver', 'GCT Vanterm', 'Clark Dr', 'Stewart St.', 'GCT Vanterm', 'Friday', 'the Asia/Pacific/Oceania', 'Friday, March 15', 'Australia', 'Sydney', 'Melbourne', 'Auckland in New Zealand', 'the Fridays For Future', 'months', 'Friday', 'November 21', 'CN Rail', 'November 19', 'the Port of Montreal', 'October 29', 'USD 28,315', 'EUR', '25,487', 'Xiangtan Road', 'Qingdao', 'October 12', 'November 19', '200,000', 'EUR', '25,830', 'USD 28,449', 'Nanjing', 'June 28', 'September 1', 'Yangzhou', 'Changzhou', 'Mexican', 'two', 'Tokyo', 'Altamira Port', 'Mexico', 'Altamira', 'September 5', 'Barranquilla', 'Colombia', 'Brazil', 'Department of Federal Revenue', 'RFB', 'Brazil', '50 percent', 'between January and October of this year', 'the year prior', 'this year', 'seized 47.1 tons', '35.1 tons', 'last year', 'Santos', 'Itajai', 'Brazilian', 'Andean', 'RFB', 'Brazilian', 'Europe', 'Netherlands', 'France', 'Belgium', 'European', 'Brazilian', 'RFB', 'Portugal', 'Italy', 'this year', 'Newark', 'NJ', 'USD 77 million', 'the MSC Carlotta', 'Newark', 'New Jersey', 'Buenaventura', 'Colombia', '60', '3,200 pounds', 'Port Newark', 'quarter-century', 'USD 77 million', '67 million', 'the Colombian Federation of Educators', '24-hour', 'Bogota', 'Plaza de Bolivar', 'Bucaramanga', 'Garcia Rovira Park', 'Cali', 'Plazoleta de la Gobernacion', 'Medellin', 'Adida', 'Calle 57', 'Carrera 43', 'Cartagena - Antonia', 'Santos Educational Institution', 'Calle 31', 'Carrera 18b', 'FECODE', 'roughly 300,000', 'today', '20 March', 'FECODE', 'Federación Colombiana de Educadores', 'National Development Plan', 'Bogotá', 'Parque Nacional', 'Plaza de Bolívar', '09:00', 'Barranquilla', 'Bucaramanga', 'Avenida González Valencia', 'Cali', 'Estación del Ferrocarril', 'San Francisco', '09:00', 'Ibagué', 'Avenida Calle', 'Medellín', 'Adida Asociación', '70', '09:00', 'Montería', 'Laureano Gómez', 'Pereira: Institucion Educativa', 'Carlota Sanchez', 'Tunja', 'Avenida Norte', '64B-195', '09:00', 'Sri Lanka Customs', 'September 3', 'the Port of Tokyo', '24-hours', 'February 27', 'the Port of New York/', 'New Jersey', 'the beginning of the year', 'APM Terminals', 'Port Newark Container Terminal', 'the end of February 2019', 'weekly', 'APM New York', 'Norfolk', 'the weekends', 'January 24', 'the Manila International Container Terminal', 'Manila South Harbor', 'up to 5-6 days', '90-95%', '100%', 'more than 8', 'Manila', '19', 'Manila South', 'January 16', 'the Port of Tanjung Pelepas', '2.5 to 1-1.5', 'January 8', 'Christmas', 'the Port of Algeciras', 'Spain', 'around 24 hours', 'Intelligence', 'Everstream Analytics', 'Aomi', 'the Port of Tokyo', 'April 14', 'more than 8 hours', 'the Aomi Terminal', 'April 30 to May 6', 'Shinagawa', 'week public holiday', 'Tokyo', 'Ohio', 'the Port of Yokohama', 'April 30', 'the past days', 'the Port of Barcelona', 'Spain', 'January 25', 'Malta Freeport', 'February 26', 'the Port of Hong Kong', '1 day', 'January 8', 'the Port of Tanjung Pelepas', 'up to', 'April 25', '24 hours', 'the Port of Yangshan', 'earlier this week', 'the next three days', 'April 25', '16 hours', 'Waigaoqiao', 'earlier this week', '12 hours', 'April 27', 'January 17', 'Tokyo', 'Japan', 'Schedule', 'Tokyo', 'ETA', 'January 18, 2019', 'MV', 'Pusan, South Korea', 'November 4', 'Xia Zhi', '09:35 to 11:30', 'November 3', 'Port of', 'March 20', 'the Port of Savannah', 'January 14', 'the Manila International Container Terminal', 'Manila South Harbor', 'up to 5-6 days', '90-95%', '100%', 'the Port of Manila', 'May 7', 'the Port of Barcelona', '24 hours', 'August 20', 'the Port of Manila', '1', 'Manila', '4', 'Manila', 'Intelligence', 'Everstream Analytics', 'October 1', 'Aomi', 'the Port of Tokyo', 'Ohio', 'Shinagawa', 'the Port of Tokyo', 'the Port of Yokohama', 'March 20', '24-hour', 'the Port of Le Havre', 'France', 'today', 'tomorrow', 'the Terminal de France', 'MSC', 'this week', 'the Port of Le Havre', 'tomorrow', 'August 27', 'Port of Manzanillo', 'around 12 to', '24-hours', 'September 16', 'the Port of Tokyo', 'Shinagawa', 'Shinagwa', 'February 8', 'the Parque Logistico de Valencia', 'Riba', '2 hours', 'Valencia', 'December', 'Valencia', 'Riba', '24-hour', 'January 14', 'the Terminal de France', 'Le Havre', 'France', 'at least January 22', 'January 14', '4', 'Rio', 'Santos, Highway', '55th', 'Ubatuba', '73rd', 'Praia de Lagoinha', '83rd', 'Praia de Tabatinga', '93rd', 'Massaguacu', 'the Port of Santos', 'Brazil', 'March 5', 'Port of New York', 'New Jersey', 'the coming hours', 'September 25', 'Port of Nhava Sheva', 'India', 'Nhava Sheva Port', 'BEATE', 'NORVIND', '0300', 'January 25', 'Baltic', 'Rugen', 'Germany', 'some 8 nm east', 'Sassnitz', 'NORVIND', 'Sassnitz', 'BEATE', 'Swinoujscie Poland', 'Bremerhaven', 'BEATE', 'NORVIND', '1.5x2 meters', 'BEATE', 'Sassnitz', 'BEATE', '1000', 'UTC', 'November 24', 'Indonesian', 'Mitra Sejahtera IX', 'the morning of', 'November 23', 'Makassar', 'Sulawesi', 'the Java Sea', 'Surabaya', 'Kendari', '147', '15', 'GANTA BHUM', 'Jaya Container Terminal', 'March 16', 'October 24', 'Chile', 'YM Unanimity', 'Puerto del Callao', 'Peru', 'the Port of San Antonio', 'Chile', 'Chile', 'October 23', 'the Port of Buenaventura', 'Colombia', 'XIN OU 21', 'the evening of', 'September 5 off Zhoushan', '72', 'East China Sea', 'Zhoushan', 'dozens', 'Rizhao', 'January 24, 2019', '1.35', 'Maersk Sheerness', 'the Lucca Quay', 'Livorno', 'ENE', '35', 'Massa', 'Chacabuco', 'three', '3.20 p.m.', 'January 25', '9 a.m.', 'Genova', 'the evening hours', 'March 29', '06:30 UTC', 'Navious Unison', 'IMO 9408853', '648km', 'the Elbe River', 'Hetlingen', 'Hamburg', 'December 8', 'Elbcarrier', 'the Celtic Sea', 'Rotterdam', 'Dublin', 'at least 12', 'Dublin', 'December 9', 'Seaspan Fraser', 'Singapore', 'October 31', 'a month', 'Tanjung Uban', 'Bintan', 'Riau Islands', 'Indonesia', 'Surabaya', 'September 29', 'the Indonesian Navy', 'December 13', 'Southampton', 'Rotterdam', 'Dublin', 'Ocean Promise', 'Kafireas Strait', 'Greece', 'Aegean Sea', 'March 21', 'Port Algeciras', 'Spain', 'Port of Aliaga', 'Turkey', 'March 22', 'Piraeus', 'around 05:00', 'September 4', 'Freeport', 'Bahamas', 'up to 36 hours', 'Hurricane Dorian', 'Freeport', 'September 4', 'the Port of Charleston', 'South Carolina', '67 hours', 'Hurricane Dorian', 'September 5', 'September 6', 'Charleston', 'November 1', '10,000', 'Karachi', 'November 1', 'Karachi', 'Azadi March', 'Imran Khan', 'the Karachi Port Trust', 'Muhammad Bin Qasim Ports', 'Karachi', 'the Port of Antwerp', 'midnight', 'January 25', 'Antwerp', 'November 13', 'Hanoi', 'Linh Trung Ward', 'Thu Duc District', 'Ho Chi Minh City', 'November 13', '20-meter-long', 'Intelligence', 'Everstream Analytics', 'Nagoya Express', 'Hapag-Lloyd', 'Hai Phon', 'late June 19', 'April 11', 'Rumba', 'Bremerhaven', 'Germany', '1 pm', 'April 10', 'Bremerhaven', 'Hapag-Lloyd', 'Guayaquil Express', 'Le Havre', 'Cartagena', 'March 19, 2019', '3.55 p.m.', '10 p.m.', 'December 2', 'Brittany', 'November 29', 'Brittany', '194', '229', 'Donges and Le Havre', 'Brittany', 'the end of June', 'Transnet Port Terminals', '4 to 5 days', 'the Port of Durban', '60%', 'South African', 'Ngqura Container Terminal', 'Port Elizabeth', '7 days', 'USD 25,000', 'Port Elizabeth Container Terminal', 'MSC', 'ONE', 'South Africa', 'Ngqura Container Terminal', '25', 'between 5 and 8', 'between the months of February', 'August', 'Volkswagen', 'one', 'Uitenhage', '680', 'approximately 400', '150', 'up to 18 hours', 'the morning', 'the end of June', 'mid- August', 'Transnet', 'the end of June', 'South African', 'At least 11', 'July 14', 'the Labor Court of Port Elizabeth', 'July 15', 'Transnet Port Terminals', 'Everstream Analytics', 'Tropical Storm Neoguri', '65 kilometers per hour', 'km/h', 'Taiwan', 'Taiwan', 'Taiwan', 'Central Weather Bureau', 'Neoguri', '980 kilometers', 'Taiwan', 'Eluanbi', 'about 1,000 kilometers', 'Taipei', 'October 21', 'Costa Rican', 'Social Security Fund', 'Tuesday, September 10', 'CCSS', 'Paseo Colon', '9:00 AM', 'Delaware Bay', 'Port Condition WHISKEY', 'New Jersey', 'Delaware', 'New Jersey', 'Port Condition WHISKEY', '72 hours', '12-hours', 'COPT', '40 mph', 'Delaware Bay', 'Port Condition WHISKEY', 'Delaware', 'Delaware', 'New Jersey', 'Port Condition WHISKEY', '72 hours', '12-hours', 'COPT', '40 mph', 'January 11', 'Mexico', '60', '31', 'Veracruz', '9', 'Tuxpan', 'Altamira', 'Acapulco', 'Coatzacoalcos', 'Lázaro Cárdenas', 'Manzanillo', 'Salina Cruz', 'Tampico', 'Guaymas', 'La Paz', 'Ensenada', 'Campeche', '350,000-400,000 barrels', 'USD 30,000-50,000', 'Mexico', 'Russian', 'Saint Petersberg', 'today', 'Petrodvorets', 'Oktyabrsky', 'Kolpinsky', 'Petrogradsky', 'Kuibyshevsky', 'Sestroretsky district', 'the State University of the Sea and River Fleet', 'St. Petersburg State University of Railway Engineering', 'Higher School of Folk Arts', 'St. Petersburg State University of Telecommunications', 'S.M. Military Medical Academy Kirov', 'the fourth consecutive week', 'Regulatory', 'Labour', '29 January', 'the European Union', 'Cambodia', 'Everything but Arms', 'EBA', 'The European Union', 'Cambodia', 'approximately 12 months', 'Cambodia', '68%', '2016', '46%', 'European', 'Word Bank', 'Cambodia', 'Chinese', '9 to 12 January', 'three', 'Chinese', 'Sihanoukville', 'Chinese', \"Tianjin Union Development Group's\", 'USD3.8-billion', 'Koh Kong', 'Chinese', 'EU', 'January', 'Cambodia', 'EU', 'Chinese', 'EBA', 'Cambodia', 'Sam Rainsy', 'Phnom Penh', 'Hun Sen', 'EBA', 'China', 'six-month', 'Cambodia', 'the European Union', 'Chinese', 'Hun Sen', 'Chinese', 'the Gulf of Thailand', 'IHS Markit Foresight', '2019', 'Cartagena', 'Spain', 'October 2', 'One', 'September 30', 'September 30', 'Port Said', 'about 8 days', 'April 25', 'Freeport', 'Bahamas', 'December 23', 'QC4', 'B1', 'the Port of Laem Chabang', '4', '5', 'December 30', 'B1', 'up to 30 hours', 'World Sydney Termal', '06:00', 'December 1 to 14:00', 'December 6', 'DP World', 'the Port of Vancouver', 'Monday, January 28', 'Global Container Terminals Inc.', 'Monday', 'morning', '4 a.m.', 'GCT Vanterm', 'GCT', 'November 12', 'Croatian', 'Split', 'Shanghai Anchorage', 'the Yangtze River', 'early in the morning', '41,000 tons', 'November 2', 'Shanghai', 'Dong Hai', 'Jiu 118', 'Split', 'the Luhuashan Anchorage', 'the evening', 'November 26', 'the Bureau of Customs', 'South Korea', 'the Manila International Container Port', 'MICP', 'Vision Restore and Equipment Corporation', 'MICP', 'November 6', 'BOC', 'November 15', '113-2019', 'Customs', 'Policy Condition', 'Chapter 95', 'ITC', '2017', '1', 'the Jawaharlal Nehru Customs House', 'December 23', 'NABL', 'April 4,', 'Singapore', '50', 'two', 'Tuas', 'Singapore', 'February', 'April', 'Malaysia', 'Malaysia', 'Singapore', 'February 18', 'Customs World', 'Ports', 'RIISE', 'Artificial Intelligence', 'Natural Language Processing (', 'NLP', 'the Dubai Customs', 'Dubai', 'the second quarter of 2019', 'Cargo', 'Property', 'ElectricityOn', 'Friday', '26 April', 'Multigremial de la Araucania', 'Mapuche', '503%', 'Januaryâ\\x80\\x93March 2019', 'Chile', 'Araucania', '2018', '136', '27', 'Bio-bio', 'Los Rios', 'Los Lagos', 'Mapuches', '6', '11', '4', '3 to zero', 'Araucania', '36', '32', '22 April', 'Coordinadora Arauco Malleco', 'CAM', 'six', 'eight', 'Temuco and Lautaro', 'first', 'two-month', '6 April', 'Araucania', 'the coming months', 'Araucania', 'Victoria', 'Ercilla', 'Collipulli', 'Lumaco', 'Temuco', 'Angol', 'Bio-bio', 'Canete', 'Tirua', 'Contulmo', 'Route 5', '408', 'January 2014', '2016', '22 April', 'the end of the year', 'IHS Markit Foresight', '2019', 'Dalian', '12 million metric tonnes', '2019', 'Australia', 'the beginning of February', '5', 'Dalian', 'Dalian', 'Bayuquan', 'Panjin', 'Dandong', 'Beiliang', '5', '14 million tonnes', 'last year', 'half', 'Australia', 'approximately 1.8%', 'Australia', 'Dalian Port', 'Australian', 'China', 'up to 40 days', 'November 12', 'New South Wales', 'November 12', 'Illawarra', 'Sydney', 'Hunter', 'late afternoon', 'evening', '80', '110kph', 'Alpine', '1900 meters', '60 to 70', '90', 'late this morning', 'afternoon', 'Snowy Mountains', 'Illawarra district', 'Southern Tablelands', 'South Coast', 'November 11', 'Dapeng Customs', 'Yantian Port', 'October 14', '76.9 tons', 'Shenzhen', 'China', 'March 29', 'Toyota', 'Japan', 'second', '5 weeks', 'Australia', '3.1 million', 'Toyota Tokyo Sales Holdings', 'Tokyo Tokyo Motor', 'Tokyo Toyopet', 'Toyota', 'Tokyo', 'Corolla', 'Nets Toyota Tokyo', 'Lexus Koishikawa Sales', 'Jamil Shoji', 'Lexus', 'Nerima', 'Toyota', 'West Tokyo', 'Corolla', 'Toyota', 'Australia', 'Ocean Lotus', 'Vietnamese', 'APT', 'Vietnam', 'Toyota', 'Japan', 'Australia', 'March 29', 'Toyota', 'Japan', 'second', '5 weeks', 'Australia', 'Toyota', 'Vietnam', '3.1 million', 'Toyota Tokyo Sales Holdings', 'Tokyo Tokyo Motor', 'Tokyo Toyopet', 'Toyota', 'Tokyo', 'Corolla', 'Nets Toyota Tokyo', 'Lexus Koishikawa Sales', 'Jamil Shoji', 'Lexus', 'Nerima', 'Toyota', 'West Tokyo', 'Corolla', 'Toyota', 'Australia', 'Ocean Lotus', 'Vietnamese', 'APT', 'Vietnam', 'Toyota', 'Vietnam', 'November 20', 'DCT Pier 2', 'the Port of Durban', 'October 26', 'Dekheila', 'the Port of Alexandria', 'the day', 'October 8', 'the Port of Colombo', 'Sri Lanka', 'Typhoon Mitag', 'the Port of Durban', 'up to 3 days', 'Durban', 'last week', 'the week', 'February 20', 'Port of', 'Fuzhou', 'February 19', 'noon', 'February 28', 'Port of Houston', 'the late evening', 'February 26', 'the weekend', 'March 2-3', 'December 16', 'Port of Houston', 'the evening', 'December 14', 'the next day', 'March 11', 'the Port of Tianjin', 'the morning of March 10', 'Port of Tianjin', '11:45', '19:30', 'March 10', 'April 26', 'Ningbo', '18:30', 'April 24 to 16:40', 'the next day', 'around 1.5 to 3 days', 'March 22', 'Port of San Antonio', 'the day', 'March 11', '10,000 gallons', 'SR-17K', 'Crawford', 'New York', 'March 10', 'March 17', 'February 3', '15:20', 'Goliath to Felixstowe', 'United Kingdom', '06:00', 'February 2', 'Immingham', 'United Kingdom to Ireland', 'ETA', 'February 4', 'approximately 12:00 UTC', 'March 26', 'Oryx Trader', 'Algeciras', 'Algeria', 'La Linea', 'Conception', 'two', 'Algeciras', 'Tuesday', 'afternoon', 'Nuneaton', 'Tamworth', 'West Coast', 'London Northwestern Railway', '14:00', 'Friday, December 28', 'Tribune Publishing', 'the Los Angeles Times', 'the Chicago Tribune', 'the Baltimore Sun', 'the San Diego Union-Tribune', 'Friday', 'night', 'Saturday', 'west coast', 'the Wall Street Journal', 'New York Times', 'the Los Angeles Times', 'the United States', 'December 30', 'French', 'Lorient, Rouen and Le Havre', 'Monday, December 30', 'between 11:00 to 15:00', 'Lorient', '16:30', 'January 2020', 'Intelligence', 'Everstream Analytics', 'CGT', '4-hour', 'French', 'December 30', '11:00 to 15:00', 'Dammam Port', '10:30', 'January 17', 'hundreds', 'the Port of Los Angeles', 'Tuesday', 'April 16, 2019', 'one', 'the L.A. Board of Harbor Commissioners', 'Dutch', 'APM', '400', 'five', 'L.A.', 'Eric Garcetti', '5-minute', 'APM', 'September of 2018', 'Port of L.A.', 'thousands', 'the Port of L.A.', 'the Port of Long Beach', 'March 21, 2019', 'the Port of Los Angeles', 'some 12,000', 'APM', 'more than 1,200', 'four-hour', 'Thursday', 'the Los Angeles Board of Harbor Commissioners', 'Eric Garcetti', '28-day', 'the Port of Los Angeles', 'March 13', 'France', 'March 19', '24 hours', 'Le Havre', 'Marseille-Fos-sur-Mer', 'more than 1 day', 'October 23', 'the Port of Genoa', 'the coming hours', 'around 500,000', 'Montreal', 'the George-Etienne Cartier Monument', 'Old Port', 'Canada', 'UN', 'week', 'Friday, September 20', 'One', 'Trudeau', 'Australian Construction, Forestry', 'Mining and Energy Union', 'DP World Australia', 'DP World Australia', 'Sydney', '14:00', 'March 29', 'April 1', 'thousands', 'Shastri Bhawan', 'Dr Rajendra Prasad Rd', 'Rafi Ahmed Kidwai Marg', 'Jawaharlal Nehru University', 'JNU', \"the Union Human Resource Development Ministry's\", 'November 20', 'the Port of Genoa', 'November 15', '15 working days', 'December 2', 'mid-March 2020', 'The Yarra River Channel', 'daily', 'between 08:00 to 13:00 and 23:00', '04:00', 'a period of', 'ten weeks', 'December 2', 'Melbourne VTS', 'the afternoon', 'August 22', 'Changhua', 'Taiwan Strait', '40', 'Taichung', 'Intelligence', 'Everstream Analytics', 'Durban Container Terminal', '04:00', 'May 1', 'May 2', 'South African', 'Day holiday', 'Durban', 'Durban City Hall', 'At least one', '30', 'Thursday', 'May 2', 'February 25, 2019', 'Dutch', 'Rotterdam', '90,000', 'North Korean', 'Kim Jong-un', 'Dutch', 'Chinese', 'Nebula', 'Russian', '3,000', 'China', 'Hamburg', 'Rotterdam', 'China', 'the Dutch ministry of affairs', 'Pyongyang', 'February 27, 2019', 'Canadian', 'the Port of Vancouver', 'the Port of Vancouver', '7 to 15 days', 'the Port of Hong Kong', 'around 1 day', 'November 11', 'the E.U.-Singapore Free Trade Agreement', 'November 21', 'Singapore', 'E.U.', '190', 'European', 'E.U.', '84 percent', 'Singapore', 'E.U.', 'the first year', 'the remaining 16 percent', 'three to five years', 'Japanese', 'Honshu', 'Typhoon Hagabis', 'Approximately 31,000', 'Japan Self-Defense Forces', 'At least 87', 'around 348', '79,490', 'Chiba', 'Fukushima', 'Gunma', 'Ibaraki', 'Iwate', 'Kanagawa, Mie', 'Miyagi', 'Nagano', 'Saitama', 'Shizuoka', 'Tochigi', 'Tokyo', 'at least 123', '67', 'Hagabis', 'ten', 'Chiba', 'Fukushima Prefectures', 'Typhoon Bualoi', 'at least two', 'Approximately 200', 'Sakura', 'Japan', 'Tokyo', 'Typhoon Faxai', 'Shinkansen', 'East Japan Railway', 'Central Japan Railway', 'Tokyu Corp', 'Tokyo Metro Co.', 'Commuters', 'Texas', 'EF-3', 'Hearne', 'Calvert', 'Franklin', 'at least 40', 'Franklin', '28', '16', 'Alto', 'Two', 'Angelina County', 'The First Baptist Church', 'Franklin', 'Robertson', 'Houston', 'Leon', 'Cherokee', 'over 55,000', 'Dominion Energy', 'Virginia', 'October 30', 'EcoPorto', 'the Port of Santos', 'October 30', 'the Regional Labor Tribunal', 'November 6', 'EcoPorto', 'Santos', 'Ecuador', 'The U.S. Embassy', 'Quito', 'approximately 2,000', 'Av 10 de Agosto', 'Rio de Janeiro', 'Plaza Santo Domingo', 'Guayaquil', 'Vicente Rocafuerte', 'Ecuadorian', 'Manab', 'El Oro', 'Zamora', 'Riobamba', 'Puerto Inca', 'La Crespa', 'Babahoyo', 'Guayaquil', 'Manab Quito', 'Flavio Alfaro', 'El Carmen', 'Babahoyo', 'the National Farmers Movement', 'Ecuador', 'October 13', 'Quito', 'overnight', 'Dozens', '17', 'Quito', 'Quito', 'Lenin Moreno', 'Guayaquil', 'one', 'the House of Culture', 'Quito', 'eight', '27', 'Ecuador', 'roughly 31 percent', 'at least one', 'at least eight', '1,340', '1,192', 'Ecuador', 'Red Cross', '5.7', '26 kilometers', 'Duran', 'Guayaquil', 'today', '4 February', '63.7 kilometers', 'at least two', 'November 22', 'EDI', 'JN Customs', 'the Port of Nhava Seva Jawaharlal', 'JNPT', 'Maharashtra,', 'India', 'November 22', 'Customs', 'Alexandria', 'Suez', 'Dekheila', 'Zeitiyat', 'Sharm al-Sheikh', 'Alexandria Port', 'Sunday', '6 January', 'The Port of El-Dekheila', 'seven kilometres', 'Alexandria', 'Egyptian', 'Alexandria Port', 'El Dekheila Port', 'Tuesday', 'Egyptian', 'overnight', 'Saad Zaghloul', 'Port Said', 'One', 'Suez Canal Road (Route 75', 'Alexandria', 'The Railway Authority', 'Wednesday', 'afternoon', 'up to 45 minutes', 'Cairo', 'Alexandra', 'Cairo', 'Assiut', 'Assiut', 'Aswan', 'Banha to Port Said', 'Tanta / Mansoura / Damietta Line', 'March 17', 'Alexandria', 'Dekheila', 'March 14', 'November 29', 'Elbe River', 'the Port of Hamburg', 'North', 'Baltic', '380 meters', 'February 4', 'the Port of Kobe', 'between 08:30 to 17:30', 'February 3', 'February 4', 'Longfellow', 'Oakland', 'today', 'Apgar', 'West', 'Protests', 'Inbound', '27 June', 'Sing Tao Daily', 'Hong Kong', 'Lam', 'the Emergency Regulations Ordinance', 'ERO', 'Hong Kong', \"Hong Kong's\", 'Hong Kong', 'Chinese', 'Hong Kong', 'â\\x80\\x93', 'Admiralty', 'â\\x80\\x93', 'ERO', 'hours', 'ERO', 'the US Congress', 'Hong Kong Human Rights and Democracy Act', 'September', 'summer', \"Hong Kong's\", '1992', 'US', 'ERO', 'China', 'more than 1 million', 'August 2019', 'Central', 'Lam', 'five', 'IHS Markit Foresight', '2019', 'August 21', 'La Virginia', 'Rosario', 'Santa Fe', 'the morning of', 'August 20', 'La Virginia', 'Rosario', 'Polish', 'Port Gdynia', 'October 28', 'The NSZZ Solidarnosc Union', 'Gdansk', 'Gdynia', 'the end of September', 'Deepwater Container Terminal Gdansk', 'Gdynia', 'the Port of Gdynia and', 'Gdansk', 'Seacod', 'Ust-Luga', 'March 4, 2019', '6 p.m.', 'two', 'Zandvliet', 'Antwerp', '6.30 p.m.', 'January 7', 'the Port of Cebu', 'the Bureau of Customs and Department of Agriculture', 'African', 'Eastern Europe', 'Belgium', 'China', 'Cebu', 'California Cartage', 'NFI Industries', '600,000', 'July 2019', 'September 2018', 'the U.S. Dept', 'Labor', '3.5 million', 'Target, Walmart', 'Home Depot', 'Amazon', 'Lowe’s', 'Kmart', 'EuroChem', 'the Port of Antwerp', 'the night of Monday March 4', 'the United States', 'May 1, 2019', 'Cat Lai Port', 'Megaport', 'scan', 'US', 'three', '2014', 'Tan Cang - Cai Mep Container Terminal', 'Tan Cang-Cai Mep International Container Terminal', 'SP-PSA', 'February 1', 'Port of Montreal', 'Australian', '23:59', 'Monday 30 December', 'South Australia', 'Port Victoria', 'Intelligence', 'Everstream Analytics', 'May 8', 'Atos', 'At least two', 'Belgium', 'third', 'the same day', 'London', 'November 22', 'Brenda', 'Highway 132', 'CN Rail Headquarters', 'Montreal', 'CN Rail', 'Highway 132', 'Montreal', 'Kelly', 'September 6', 'Brunsbuettel', 'Kiel Canal', 'Germany', 'the Elbe River', 'Rotterdam', 'Kaliningrad', 'Russia', 'Three', 'one', 'two', 'up to 22', 'the Port 21', 'P&O', 'Tilbury', 'London', 'Calais', 'France', 'Dover', 'Calais', 'Brexit', 'up to', '75 road miles', 'M20', 'Dover', 'London', 'the week', '100', 'Tilbury', 'Zeebrugge', 'Belgium', 'November 22', 'Redbridge Road', 'Millbrook', 'Redbridge', 'November 25 to 29', '20:00 to 06:00', 'Southampton', 'the Intercontinental Terminals Company', 'ITC', 'the Houston Ship Channel', 'La Porte', 'TX', 'Monday', 'Sunday, March 17', 'Overnight', 'at least six', 'xylene', 'one', 'Toluene', 'polish', 'Three', '225', 'Monday', 'morning', 'at least two', 'Deer Park', 'Deer Park', 'La Porte', 'Monday', 'the Port of Houston', '50-mile-long', 'ITC', 'Houston', 'Texas City', 'the Gulf of Mexico', 'Royal Dutch Shell', 'Deer Park', 'The U.S. Coast Guard', 'ITC', 'Vopak', 'over six miles', 'ITC', 'December 13', 'Erukkenchery', 'Chennai', 'India', 'Sri Ganesh Colour', 'November 15', 'Blackwater Close', 'Rainham', 'East London', 'About eight', '60', 'two', 'A13', 'the day', 'May 3', 'Sasang', 'Busan city', '23:40', 'May 2', '30 million', 'EUR', '22,983', 'Kearny Mesa', 'San Diego', 'Convoy', 'Balboa', 'about 01:30', 'about 05:55', 'two', 'Shengtai', 'the Yangtze River', 'the Zhejiang Province', 'April 1, 2019', 'Nantong', 'Ulsan', 'Zhejiang', 'Shengsi County', 'the Yangtze River', 'The Shanghai Maritime Rescue Center', '6:52 a.m.', 'one', 'Permatang', 'Mertajam', 'Penang', 'February 25', '01:21', '900 square meter', 'about 80 percent', '03:15', 'April 9', 'Tan Tao Ward', 'Binh Tan District', 'Ho Chi Minh City', '12pm', 'between 800-1400', '10', '1', '3', 'November 27', 'the Port of Santos', 'Guaruja', 'SP', '16:00', 'November 27', '30 minutes', '16:50', 'the Port of Santos', 'Japanese', 'February 12', 'Ota', 'Tokyo', 'approximately 3 kilometers', 'the Tokyo Monorail Distribution Centre Station', 'September 19', 'September 16', '21:30', 'Guangzhou', 'Huigui Engineering Materials Company', 'Zhongxin Town', 'Zengcheng District', 'Guangzhou', 'Guangdong', 'two', 'The Guangdong Provincial Emergency Management Department', 'Guangzhou', 'Huigui Engineering Materials Company', 'Riviana Foods', 'Port Freeport', 'around 7:40 p.m.', 'Wednesday', 'two', 'October 8', 'October 4', 'Wujin District', 'Changzhou', 'Moscow', 'September 27', 'Volgo', 'the Volga River', 'Tolyatti', '300 tons', 'Saint Petersburg', 'Astrakhan', 'April 14', 'Rua', '123', 'Rua Padre Anchieta', 'Macuco', 'Santos', '3:50 PM', 'April 14', 'Brazil', '2', '1', 'Xilin Lane', 'the Xitun District', 'Taichung City', 'approximately 800 square meters', 'December 13', 'the Port of Melbourne', 'first', 'first', 'January 29', 'Santos Dumont Airport', 'Rio de Janeiro', '7:06 to 7:36 AM', 'January 29', '5', 'Infraero', 'August 29', 'five', 'International-Matex Tank Terminals', 'IMTT', 'Bayonne', 'New Jersey', 'United States', 'August 28', 'Amman', 'Thursday', 'Zezia', 'mosques', 'the King Abdullah Canal', 'Friday', 'Amman', 'Mersing', 'Johor', 'more than 9,000', 'December 16', 'Jalan Jemaluang', 'the past two days', 'February 5', 'Sao Paulo', 'the Port of Santos', 'the week', 'September 13', 'Sagunto', 'Valencia', 'Sagunto', 'December 1', 'the Houston Ship Channel', 'the past weekend', 'late November 28', '13:00', 'November 29', '22:40', 'November 29', '04:30', 'November 30', '22 hours', 'April 23', 'the Port of Xiamen', 'April 22', 'April 21', 'February 20', 'the Port of Houston', 'February 1', 'the Port of Houston', 'at least 24', 'February 25', 'the Port of Le Havre', 'France', 'Last week', 'February 22', 'April 17', 'the Port of Dalian', 'the afternoon', 'April 17', 'April 18', 'United Natural Foods, Inc.', 'UNFI', 'Fort Wayne', 'Green Bay', 'Hopkins', 'December 12', 'Teamsters Local 414', 'Fort Wayne', 'Two', 'Green Bay', 'Wisconsin', 'Hopkins', 'Minnesota', 'Green Bay', 'Joannes', 'S Broadway', 'Hopkins', 'Jefferson Ave S', '3rd', '120', 'Hopkins', '150', 'Teamsters Local', '662', 'Green Bay', 'UNFI', 'Illinois', 'Indiana', 'Ohio', 'Kentucky', 'Michigan', 'West Virginia', 'Kentucky', 'U.S.', 'Canada', 'UNFI', 'UNFI', 'second', 'over 3,000', 'U.S.', 'Whole Foods', 'Amazon', 'France', 'Tuesday', 'evening', 'February 19', 'Paris', 'Agen', 'Lille', 'Dijon', 'Marseille', 'Bordeaux', 'Montpellier', '7:00 PM', 'Aix', '7:00 PM', 'Albi', '7:00 PM', 'Vigan', '7:00 PM', 'Annecy', '7:00 PM - Place du Souvenir', 'Aurillac', '6:30 PM', 'Human Rights Square \\nAuxerre', '6:30 PM', '7:00 PM', 'Jeanne Hachette \\nBelfort', \"Place d'Armes\", '7:00 PM', 'Human Rights \\nBlois', '7:00 PM', '7:00 PM', '7:00 PM', 'Bourgoin-Jallieu - 6:00 PM', 'Place de la Republique', '7:00 PM - Freedom Square', '7:00 PM', '7:00 PM', '7:00 PM', 'Jean Moulin Esplanade', 'Clermont-Ferrand', '7:00 PM', '6:00 PM - Prefecture', 'the Alpes de Haute Provence', 'Dijon', '7:00 PM', '6:00 PM', 'the Belfry \\n', 'Dunkirk', 'PM - Human', 'CUD', 'Foix', '7:00 PM', 'Frejus - 6:30 PM', 'Senegalese', '6:30 PM', '6:30 PM', 'La Roche', 'Napoleon Square \\n', 'Le Grand Lemps - 6:30', 'Le Havre', 'Le Mans - 6:00 PM', 'Le Puy-en-Velay', '7:00 PM', 'the Town Hall \\nLille', '7:00 PM', '7:00 PM - Aisne', '7:00 PM', '7:00 PM', 'The Ombriere du Vieux Port', '7:00 PM', 'Jean Rameau Park', 'the Memorial of the Jewish', 'Montauban', '6:30 PM', '7:00 PM', 'Montpellier', '6:30 PM', '7:00 PM', 'Nancy', '7:00 PM', '7:00 PM', '50', 'Nice', '6:30 PM', 'Nimes', '7:00 PM', 'Maison Carree', 'Niort', '7:00 PM', 'Orleans - 7:00 PM', 'Paris', '7:00 PM', '6:30 PM', '6:30 PM', '7:00 PM', 'Saint Brieuc', '7:00 PM - Place', 'De Gaulle \\nSaint-Die-des-Vosges', 'Georges Trimouille', 'Saint Etienne', '7:00 PM', 'Jean Jaures', 'Strasbourg', '7:00 PM', '7:00 PM', 'Jean Jaures', '7:00 PM', '7:00 PM', '7:00 PM', '7:00 PM', 'Eurostar', 'French', 'London', 'Paris', 'Wednesday morning', 'today', '9019', 'Paris', 'Nord', 'London St Pancras', '9039', 'Paris', 'Ebbsfleet International', 'London St Pancras', '9059', 'Paris', 'Ashford International', 'London St Pancras', '21:03', 'Paris Gare du Nord', 'Ebbsfleet International', 'London St Pancras', '9050', '19:01', 'London St Pancras', 'Paris Gare', 'Eurostar', 'three', 'Paris Gare', 'Nord', 'London St Pancras International', 'Monday', 'evening', 'seven', 'Tuesday', '10 December', 'French', 'Dominion Energy', 'Fredericksburg', 'Central Virginia', 'Philippines', 'South Korea', 'this year', 'ASEAN-Republic of Korea Commemorative Summit', 'Busan', 'South Korea', 'November 25', 'two', 'next year', 'South Korea’s', 'Philippine', '5-year', 'two', 'FTA', 'April', 'Freeport Harbor', 'Hurricane Dorian', 'April 18, 2019', 'Wyomissing', 'earlier this week', 'one', 'Chicago', 'New York', 'A half-dozen', 'Norfolk Southern', 'New Jersey', 'Ohio', 'Tuesday', 'April 16', 'Wyomissing', 'the East Coast', 'Midwest', 'Norfolk Southern', 'Wednesday', 'Norfolk Southern', 'a few hours', 'several days', 'March 7', 'Bremerhaven', '11am', 'Lübberstedt', 'Bremerhaven-Wulsdorf', 'Stubben', 'Lübberstedt', 'at least 2:15pm', 'Taiwan Strait', 'Kaohsiung', 'Taiwan', 'the afternoon of September 22', 'early in the morning', 'September 19', 'Portuguese', 'December 17', 'Chinese', 'Xi Jinping', 'the Macau Special Administrative Region', 'December 18 to 20', 'Luen Ying Hong Co. Ltd', 'Macau', 'the weekend', 'approximately 23,000', 'Ningde', 'Fuzhou', 'Pingtan', 'Fujian Province', 'Typhoon Mitag', 'second', 'China', 'four', 'Thursday, March 21', 'the Deer Park', 'Galena Park', 'Texas', 'Thursday', 'afternoon', 'the Intercontinental Terminals Company', 'ITC', 'La Porte', 'as many as eight', 'Sunday to Wednesday', '225', 'ITC', 'The U.S. Environmental Protection Agency', 'EPA', 'the Texas Commission on Environmental Quality', 'EPA', 'La Porte', 'Katy', 'The Port of Houston', 'the Houston Ship Channel', 'EPA', 'https://www.tceq.texas.gov/response/itc-terminal-fire-update', 'Monday night', 'Greenpeace', 'Rainbow Warrior', 'Gdansk', 'Mozambique', 'Mozambique', '22', 'Monday', '18', 'four', 'Gdansk', 'Tuesday', 'morning', 'Poland', 'the European Union', 'Poland', 'Russia', 'the United States', 'Mozambique', 'Australia', 'Colombia', 'Poland', 'Peoples Democratic Party', 'HDP', 'Leyla G', 'November', 'Kurdistan Workers Party', 'PKK', 'Abdullah calan', 'Wednesday', 'pro-Kurdish', 'Istanbul', 'Mersin', 'recent days', '250', '36', 'Turkish', 'Wednesday', 'the coming days', 'weeks', 'Turkey', 'DP World', 'Sydney', 'April 1 and 2 following', 'last week', '24-hour', 'Fremantle', 'Melbourne', 'Sydney', 'Brisbane DP World', '2-hour', 'DP World Sydney', '12:00-14:00', '20:00-22:00', 'April 1', '04:00-06:00', 'April 2', 'these hours', 'DP World Australia', 'Batemans Coast', 'Eden Coast', 'Gale Warning', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Sydney', 'August 22', 'the Dubai Public Prosecution', 'five', 'Asian', '818', '36,000', 'the Dubai Criminal Court', 'Monday', 'Dubai', 'Al Quoz Industrial Area', 'Dubai', 'British Airways', '2068', 'Port Louis', 'London', 'Gatwick Airport', 'LGW', 'Phatom', 'September 19', 'Gota River', 'Lilla Edit', 'Sweden', 'Hamburg', 'Lidkoping', 'Sweden', 'Lilla Edet', '18.00', 'the next day', '24-hour', 'Catalan', 'February 21', 'Catalonia', 'Port of Barcelon’s', 'Liberian', 'German', 'Johann MK Blumenthal', 'Port Kembla', 'Australia', 'Singapore', 'February 23', 'the Australian Maritime Safety Authority', 'thousands', 'Germany', 'Fridays For Future', 'Berlin', 'thousands', 'Invalidenpark', 'around 2:00 PM', 'Friday', 'Aachen', 'Bonn', 'Bremen, Bremerhaven', 'Chemnitz', 'Dortmund', 'Dresden', 'Duisburg', 'Essen', 'Erfurt', 'Frankfurt', 'Main', 'Hamburg', 'Hannover', 'Heidelberg', 'Cologne', 'Potsdam', 'Stuttgart', 'Germany', 'Wednesday, April 10', 'Frankfurt', 'Hamburg', 'Berlin', 'Brandenburg', 'Verdi', 'Germany', 'Wednesday, April 3', 'Monday, April 8', 'Hesse', 'Hamburg', 'Baden-Wurttemberg', 'Berlin', 'Brandenburg', 'Ostwestfalen', 'Around 50 percent', 'Berlin', 'Deutsche Bank', 'Investitionsbank Berlin', 'Berliner Sparkasse', 'Commerzbank', 'Targo Bank', 'Investitionsbank des Landes', 'the Landesbausparkasse Ost', 'a ‘Fridays', 'Hamburg', 'today', 'the UN Climate Change Conference', 'Madrid', 'the beginning of December', '12:35', 'St. Nikolai', 'Willy-Brandt-Straße', 'Speersort, Steinstraße', 'Klosterwall', 'Esplanade', 'Stephansplatz', 'Gorch-Fock-Wall', 'Johannes', 'Kaiser-Wilhelm-Strasse', 'Axel-Springer-Platz', 'Stadthausbrücke', 'Graskeller', 'Rödingsmarkt Willy-Brandt-Strasse', 'between 14:00', '17:00', 'Willy-Brandt-Straße', 'Deichtorplatz', 'Millerntorplatz', 'around 20:00', 'Greenpeace', 'today', '7 September', 'Bremerhaven', 'several hundred', 'BMW', 'Klimakiller', 'hundreds', 'BMW', 'Mercedes', 'Frankfurt', 'Greenpeace', 'Hamburg', 'Strandweg', 'today', 'Bremen Town Hall', 'Am Markt 21', 'Seebrücke', 'European', 'the Mediterranean Sea', 'Deutsche Bahn', 'Monday', 'morning', 'Hamburg', 'Berlin', 'Hannover', 'Bremen', 'Hannover', 'Berlin', 'Bremen', 'Nienburg', 'Hannover', 'Bremen', 'the day', 'Deutsche Bahn', 'Germany', '20:00', 'Tuesday 23 April', 'up to 75 kilometres per hour', 'Hamburg', 'Berlin', 'Flensburg', 'the German Taxi', 'Car Rental Association', 'today', 'Berlin', 'today', 'the Brandenburg Gate', '13:30', 'Hamburg', 'Dusseldorf', 'Wiesbaden', 'Stuttgart', 'Dresden', 'Leipzig', 'Magdeburg', 'at least six', 'Brauhausstraße', 'Hamburg', 'Bremen', 'Tuesday', '500 metre', '281', '300 metres', 'German', 'Hamburg', 'Saturday night', 'one', 'Eight', '29 January', 'the European Union', 'Cambodia', 'Everything but Arms', 'EBA', 'The European Union', 'Cambodia', 'approximately 12 months', 'Cambodia', '68%', '2016', '46%', 'European', 'Word Bank', 'Cambodia', 'Chinese', '9 to 12 January', 'three', 'Chinese', 'Sihanoukville', 'Chinese', \"Tianjin Union Development Group's\", 'USD3.8-billion', 'Koh Kong', 'Chinese', 'EU', 'January', 'Cambodia', 'EU', 'Chinese', 'EBA', 'Cambodia', 'Sam Rainsy', 'Phnom Penh', 'Hun Sen', 'EBA', 'China', 'six-month', 'Cambodia', 'the European Union', 'Chinese', 'Hun Sen', 'Chinese', 'the Gulf of Thailand', 'IHS Markit Foresight', '2019', 'Montreal', 'Tuesday', 'evening', 'Hwy 20', 'Blvd Angrignon', 'Hwy-20', 'Greece', 'Piraeus', 'Rafina', 'Lavrio', 'Pahi Megaron', 'Faneromeni Salaminas', 'Oropos', 'Eretria', 'Evia', 'Kavala', 'Prinos', 'Kyllini', 'Zakynthos', 'Cephalonia', '24-hour', 'Greece', 'Wednesday, October 2', 'Athens', 'Thessaloniki', 'working hours', '10:00 AM to 3:00 PM', 'Piraeus', 'Rafina', 'Lavrio', 'Athens', 'Thessaloniki', 'Piraeus', 'Rubikon', 'Piraeus', 'Athens', 'Sunday', 'morning', 'about 10', 'at least eight', 'several weeks', 'Thursday', 'Greece', 'Piraeus', 'Rafina', 'Lavrio', 'Pahi Megaron', 'Faneromeni Salaminas', 'Evia', 'Kavala', 'Prinos', 'Kyllini', 'Zakynthos', 'Cephalonia', 'Thursday, September 12', '23', 'Greenpeace', 'the Fred Hartman Bridge', 'Baytown', 'TX', 'Houston', 'around 6:30 AM', '11', 'the Houston Ship Channel', 'half-mile', 'Light 102A', 'Light 104', 'Friday', 'morning', 'one', 'Greenpeace', 'the Houston Ship Channel', 'Democratic', 'Houston', 'Thursday', 'National Committee', 'The Houston Ship Channel and Port of Houston', 'U.S.', 'annually', 'approximately $339 billion', 'over 1.35 million', 'Texas', 'Thursday', 'approximately 300', 'at least seven', 'an extra day', 'recent months', 'Europe', 'Greenpeace', 'Extinction Rebellion', 'Greenpeace', 'the Houston Ship Channel', 'Thursday', 'Friday, September 20', 'Greenpeace', 'Baytown', 'the Houston Ship Channel', 'the United States', 'Chinese', 'September 10', 'Nansha', '644 tons', '18', '441 tons', 'Nansha', '233 tons', 'Guangzhou', 'December 13', 'Sydney', 'around 90 percent', 'December 13', 'Sydney', 'around 90 percent', 'February 25', 'the Port of Tianjin', 'February 25 to February 28', 'January 7', 'Sydney', '35', '38', 'January 7', 'Melbourne', 'noon', '16:30', '40 degrees', 'December 27 to 30', '38 degrees', 'March 20', 'Port of Houston', 'January 7', 'Port of Long Beach', '9', 'November 6', 'the Port of Houston', 'between November 3 and 7', 'January 2', 'the Port of Colombo', 'about 24-hours', 'April 25', 'KwaZulu-Natal', 'Eastern Cape', 'Northern Cape', 'Western Cape', 'Durban', 'East London', 'at least 60', 'more than 1,000', 'Jawaharlal', 'Nehru Port', 'the morning of September 4', 'Mumbai', 'the India Meteorological Department', 'September 4', 'the next 24 hours', 'Jawaharlal', 'Nehru Port', 'August 30', 'the next 24 hours', '160 mm', 'Kanto', 'August 27', 'at least three', 'Kyushu', 'Kanto', 'Tokyo', 'Tokyo', 'October 28', 'Catalunya', 'October 22-23', 'Barcelona Port', 'Zaragoza, Burgos', 'only one', 'two', 'Operations', '3 weeks', 'Port of San Antonio', 'the period', 'February 11', 'afternoon', 'February 13', 'the Port of Nagoya', 'the morning of April 27', 'afternoon', 'the Port of Alexandria', 'December 15', 'December 16', 'the last few days', 'Guinea', 'Alpha Conde', 'third', 'Conde', 'third', 'last year', 'earlier this week', 'Guinean', 'Conde', 'recent months', 'the coming days', 'weeks', 'Saturday', 'tenth', 'the September 28', '2009', 'over 150', 'Conakry', 'Monday night', 'Conde', 'Guinean', 'New York', 'Conde', 'two', 'the Souapiti Dam', '30-minute', 'Conde', 'Conde', 'third', 'Conde', 'the Union of Democratic Forces of Guinea', 'UFDG', 'the Guinea Standing Party', 'Tougue', 'Thursday', 'Friday', 'Conde', '2010', 'Guinea', 'first', 'France', '1958', 'second', 'five-year', '2015', 'second', 'October 2020', 'last year', 'two-thirds', 'first', 'September 2018', 'Guinea s Constitutional Court', 'Kelefa Sall', 'Conde', 'two', 'earlier this year', 'Russian', 'Guinea', 'Conde', 'third', 'Conakry', 'third', 'Guinea', 'the last year', 'June 2019', 'at least 28', 'Nzerekore', 'Conakry', 'Macenta', 'Coyah', 'Tanene', 'Boffa', 'Siguiri', 'Kankan', 'Faranah', 'April', 'May of 2019', 'July 2018', 'earlier this year', 'the National Front for the Defense of the Constitution', 'third', 'Conde', 'the coming days', 'weeks', 'Middle Guinea', 'Conakry', 'Saturday, September 28', 'tenth', 'September 2009', '156', 'over 100', 'Conakry', 'Moussa Dadis', 'Camara', '13', 'Conde', 'Conde', 'Guinea', 'the coming days', 'weeks', 'Saturday, September 28', 'Monday, September 9', \"the 'International Khalistan Support Group'\", 'Khalistani', 'the Madras High Court', 'Esplanade Rd', 'Chennai', 'Tamil Nadu', 'Monday, September 30', 'English', 'Delhi', 'Khalistani', 'Sikh', 'Indian', 'Punjab', 'Punjab', 'Punjab', 'India', 'Punjab', 'Pakistan', 'August', 'six', 'Lashkar-e-Taiba', 'Pakistan', 'Tamil Nadu', 'India', 'Sri Lanka', 'the European Storm Forecast Experiment', 'ESTOFEX', 'August 27', 'Valencia', 'Spain', '06:00', 'August 27', '06:00', 'August 248', 'December 31', 'Port of Yokohama', 'Japan', 'the afternoon of', 'December 31', 'the morning of January 1', 'April 23', 'the Port of Busan', 'the morning to noon', 'April 24', 'September 5', 'the Port of Busan', '24 hours', 'the evening of September 6 to 7', 'April 23', 'the Port of Kwangyang', 'the morning to noon', 'April 24', 'November 21', 'the Port of Houston', 'November 22', 'the Houston Ship Channel', 'March 21', 'the Port of San Antonio', 'the Port of Melbourne', 'March 22', 'the Port of Adelaide for', 'March 22', 'the Port of Adelaid', 'March 25', 'January 4', 'Port of San Antonio', 'Intelligence', 'Everstream Analytics', 'Egypt', 'Alexandria Port', 'Intelligence', 'Everstream Analytics', 'Egypt', 'Port Said', 'November 12', '21:40', 'November 11', 'the Port of Hamburg', 'Germany', 'Hamburg Eurogate Terminal', '05:00', 'November 13', 'December 10', 'the Port of Rotterdam', 'Netherlands', 'December 10', '04:00', 'December 11', 'November 12', 'the Port of Rotterdam', 'Netherlands', 'November 11', '19:00', 'November 12', 'April 27', '09:00', 'April 22', 'the Port of Dammam', 'Saudi Arabia', 'April 22', 'the Port of Le Havre', 'the early morning of March 12', 'several hours', 'the day', 'December 10', 'the evening', 'December 9', 'the midnight of', 'December 10', 'Port of Bremerhaven', 'January 7', 'the Port Said Port', 'January 4', 'Port Said Port', 'November 29', 'Port of Bremerhaven', 'May 9', 'Port of Laem Chabang', 'April 29', 'Pier', 'Easter', '18:00', 'Sunday', '21 April', 'Atlántida', 'Bay Islands', 'Cortés', 'Yoro', 'Tela', 'Atlántida', 'Lake Yojoa', 'March 26', 'Hong Kong', 'Australia', 'the Australian Parliament', 'May', 'March 21', 'Hong Kong Customs Officers', '2', 'HKD 5 million', '570,000', 'USD 640,000', 'Siu Sai Wan', 'China Distributors', 'Thursday', 'Chinese', 'Han Zheng', 'Beijing', 'Hong Kong', 'Sunday, November 24', 'Shenzhen', 'November 15', 'Nearly all 31,000', 'Hong Kong', '600', '7:30 AM', '10:30 PM', 'Hong Kong', 'Wednesday', 'recent weeks', 'Hong Kong Polytechnic University', 'the district council', 'Sunday', 'Sunday', 'Sunday', 'Tuesday', 'the U.S. Senate', 'the Hong Kong Human Rights and Democracy Act', 'the U.S. Department of State', 'Congress', 'annually', 'Hong Kong', 'China', 'Hong Kong', 'U.S.', 'Hong Kong', 'U.S.', 'The U.S. House of Representatives', 'October', 'Senate', 'Donald Trump', 'Beijing', 'Hong Kong', 'U.S.', '1,300', 'U.S.', '85,000', 'U.S.', 'Hong Kong', 'Senate', 'Hong Kong', 'the United States', '1992', 'China', 'U.S.-China', 'U.S.', 'Hong Kong', 'U.S.', 'U.S.', '$37 billion', 'Hong Kong', 'last year', 'Hong Kong', '$33 billion', 'Hong Kong', 'U.S.', 'China', 'Trump', 'Hong Kong', 'Trump', 'Chinese', 'Xi Jinping', 'June', 'Trump', 'China', 'House', 'Senate', 'Trump', 'U.S.', 'China', 'March 15', 'Hong Kong', 'US', 'the avian influenza incubation period', 'Chinese', 'The US Department of Agriculture', 'USDA', 'US', 'Hong Kong', 'Friday', 'Hong Kong', 'Mong Kok', 'Kowloon', 'the Sheung Shui', 'the New Territories', 'the Chinese University of Hong Kong', 'earlier in the week', 'Hong Kong Polytechnic University', 'Friday', 'the fifth consecutive day', 'the morning', 'earlier in the week', 'Hong Kong', 'daily', 'earlier in the week', 'The day', 'Chinese', 'Xi Jinping', 'Hong Kong', 'Carrie Lam', 'one', 'two', 'The U.S.-China Economic and Security Review Commission', 'the U.S. Congress', 'Beijing', 'Hong Kong', 'Monday', 'Hong Kong', 'daily', 'Monday', 'daily', 'Friday', 'Friday', 'the past week', 'MTR', 'just an hour', 'two', 'CUHK', 'the past week', 'Chinese', 'Hong Kong', 'the Emergency Regulations Ordinance', 'ERO', 'November 29', 'Hong Kong', 'around 540 tonnes', 'about USD 50 million', '33 million', 'four', 'Hong Kong', 'Mainland China', 'Hong Kong', 'Saturday', '5 January', 'Two', 'Prince Edward Road East', 'the Kai Tak Cruise Terminal Substation', 'Chinese', \"the People's Liberation Army\", 'PLA', 'Hong Kong', 'Huanggang Port', 'Thursday', '29 August', 'Stonecutters Island', 'Hong Kong', 'PLA', '26', '27 October', 'Chater Garden', 'Central', 'Saturday', 'evening', '26 October', 'Sunday', '27 October', 'Muslims', 'Citizens and Journalists', 'Kowloon', 'mosque', 'Kowloon', 'Sunday', 'Muslim', 'British', 'China', 'China', 'the age of 40', \"Hong Kong's\", 'Chinese', 'Hong Kong', 'the Special Administrative Region', 'China', 'yesterday', 'Hong Kong', 'China', 'National Day', \"the Special Administrative Region's\", \"the Junior Police Officers' Association\", \"Hong Kong's\", 'the Emergency Regulations Ordinance', '1967', 'this week', 'Monday', 'hundreds', 'five day', 'Monday', 'Chinese', 'Lamma Island', 'Hong Kong', 'today', '8 January', 'one', '21', 'one nautical mile', 'Lamma Island', 'Hong Kong’s', 'annual', '1 October', 'National Day', 'Victoria Harbour', '2014', 'National Day', '70 years', 'the People’s Republic of China', 'the same day', 'this year', 'the day', 'Monday 30 September', 'China', 'National Day', '1 October', 'At least three', 'the Legislative Council', '1 July', 'Gregory Wong Chung-yiu', 'Ventus Lau Wing-hong', '7', '7 September', 'Government House', '14 September', 'Tin Sau Road Park', 'MTR Super Cooperation Movement', '2-6 September', 'Lai King', 'Kowloon Tong', 'North Point', '2 September', 'two weeks', 'the coming days', 'Hong Kong', 'Monday', '11 November', 'MTR', 'the Edinburgh Place', '08:00', 'Monday', '09:00', 'Tuesday', '12 November', 'Wednesday', '13 November', 'thousands', 'Edinburgh Place', 'Kwai Chung Plaza', 'Tuesday', 'Hong Kong’s', 'Central Harbour', '9-11 March', 'Hong Kong', '10 March', 'Man Po Street', 'Lung Wo Road', 'Yiu Sing Street', 'Saturday', 'Monday', 'The U.S. Embassy', 'Hong Kong', 'Sunday', '10 November', 'Cenotaph', 'Central', 'eight', '13:00', 'Tuen Mun', 'Kwun Tong', 'Tsuen Wan', 'Shatin', 'Tai Po', 'Mongkok', 'Causeway Bay', 'Tseung Kwan O', 'Tuen Mun', '14:00', 'Monday', '11 November', '7:00', 'tomorrow 16 October', 'Lam', 'annual', 'the High Court', 'the Tuen Mun Town Hall', '21:00-22:00', 'Wednesday', 'Tamar Park', 'the Legislative Council', 'Houston', 'Imelda', 'a Tropical Depression', 'Storm', 'Louisiana', 'Texas', 'Tucker Bayou', 'Houston Ship Channel', 'ITC', 'Friday, March 22', 'ITC', 'Monday, March 25', 'less than a', '34-foot', 'approximately one-hour', 'The U.S. Coast Guard', 'the Houston Ship Channel', 'Greenpeace', 'the Fred Hartman Bridge', 'Houston', 'April 25', 'Intercontinental Terminal Co.’s', 'Deer Park', 'Texas', 'late March', 'several weeks', 'Houston', 'Port of Houston', 'September 25', 'the Coast Guard', 'the Houston Ship Channel', 'the I-10 San Jacinto River Bridge', 'Channelview', 'Texas', 'the Texas Department of Transportation', 'September 20', 'nine', 'the San Jacinto River Fleet', 'daylight hours', 'the Coast Guard', 'Friday', 'the Matson Terminal', 'Oakland', '713-foot', 'Matsonia', 'around 8 a.m.', 'Thursday', 'Matsonia', 'the Coast Guard', 'the National Response Center', 'approximately 15-feet', 'Monday', 'Egyptian', 'some 400', 'September 20-21', 'Mahienour El-Masry', 'Cairo', 'late Sunday', 'Cairo', 'Netblocks', 'September 22', 'Arabic', 'a few thousand', 'Egyptian', 'Egyptian', 'Abdel Fattah al-Sisi', 'September 20 and September 21', 'Cairo', 'Alexandria', 'Giza', 'Damietta', 'Port Said', 'El-Mahalla El-Kubra', 'Sisi', 'Suez', 'September 21', 'the weekend', 'the Arab Spring', '2011', 'Islamist', 'Mohamed Morsi', '2013', 'September 20-21', 'Sisi', 'Egypt', 'the coming days', 'million', 'Egypt', 'Friday, September 27', 'Egypt', 'Hurricane Dorian', 'the Atlantic Ocean', 'Puerto Rico', 'Florida', 'the next days', 'Category 3', 'the Saffir-Simpson Hurricane', 'Wind Scale', 'late Sunday night', 'early Monday morning', 'Dorian', 'Wednesday', 'afternoon', 'Orlando', 'FL', 'the Florida Space Coast', 'Florida', 'between four to eight inches', 'ten inches', 'Florida', 'Saturday', 'Ron DeSantis', 'Florida', 'Florida', 'DeSantis', 'Florida', 'seven days', 'Dorian', 'Florida', 'The U.S. Coast Guard', 'Florida', 'Whiskey', 'Key West', 'Miami', 'Port Canaveral', 'Tampa', 'St Petersburg', 'Manatee', 'Southeast', 'Florida', 'Hartsfield', 'Atlanta International Airport', 'Florida', 'the Gulf of Mexico', 'the Gulf Coast', 'Georgia', 'South Carolina', 'North Carolina', 'Florida', 'Southeast', 'the Gulf Coast', 'Hurricane Dorian', 'Balboa Port', 'Panama', 'second day', 'Friday, January 18', 'the Ministry of Labor and Work Development (Mitradel', 'Mitradel', 'the Panama Maritime Authority', 'Hutchinson Ports', 'Ports PPC', 'Panama Ports Company', 'State', '10%', 'Hutchison Ports PPC', 'three', 'two', 'the Port of Balboa', 'Toll Global Logistics', '72', 'Cherry Lane', 'Laverton North', 'Victoria', '11am', 'May 8', '2', '5', 'May 9', 'Toll Global Logistics', 'the Toll Group', 'Japan Post Holdings', 'the Asia-Pacific region', 'Thursday', 'Hyundai Heavy Industries', 'HHI', 'Daewoo Shipbuilding', 'Daewoo Shipbuilding', 'the week', 'Nearly 60 percent', 'HHI', '90 percent', 'HHI', 'last month', 'March', 'two', 'around 20 percent', 'South Korea', 'Chinese', 'HHI', 'Ulsan', 'Geoje Island', 'HHI', 'Interstate 10 San Jacinto River', 'two', 'Houston', 'September 20', 'the East Freeway', 'the San Jacinto River', 'SH 225', 'SH 146', 'SH 146', 'September 20', 'around 12.00', 'nine', 'the San Jacinto River Fleet', 'San Jacinto River', 'Six', 'two', 'Canal Barge’s', '11,689', 'CBC193', 'Sunday', 'Nathan Rd', 'Mong Kok', 'Kowloon', 'another evening', 'Hong Kong', 'over 200', 'around six feet', 'two', 'July', 'August', 'the Lung Shing Factory Building', 'Tusen Wan', 'July', 'two pounds', 'Fo Tan', 'August', '30', 'Hong Kong', 'January 26', 'the Port of Durban', 'the Port of Durban', 'January 26', 'January 25', 'Barcelona', 'hundreds', 'Uber', 'Cabify', 'Durban', 'London', 'around 100,000', 'thousands', 'Edinburgh', 'Brighton', 'over 200', 'UK', 'Manzanillo', 'Colima', 'four days', 'Mora', 'Mersin', 'Mersin', 'Mersin', '615kg', 'four', 'Qazi Ahmed', 'Karachi', 'Sindh', 'Taluka Head Quarter', 'Qingdao', 'six-day', 'China', 'Russia', 'Joint Sea', '2019', 'St Petersburg', 'Lome', 'Tanker', 'February 20', 'Yangshan', 'the Port of Shanghai', 'China', 'the morning', 'February 19', '20,000', 'GM Korea', 'GM', 'Incheon', 'Changwon', 'Chuseok', 'Over 10,000', 'General Motors', 'GM', 'Korea', 'September 9, 10', '11', 'Chuseok', 'Thursday', 'GM Korea', 'two', 'four-hour', 'Friday', 'August 30', 'Incheon', 'Changwon', 'two-day', 'Tuesday', 'August 20 and Wednesday, August 21', 'recent weeks', 'China', 'Vietnam', 'Cambodia', 'third', 'U.S.', 'the United States', 'China', 'June 9', 'Vietnamese', 'Chinese', 'Vietnam', 'U.S.', 'Chinese', 'Saigon', 'June 19', 'U.S.', 'Chinese', 'Sihanoukville Special Economic Zone', 'Chinese', 'SEZ', 'Cambodia', 'U.S.', 'Chinese', 'Cambodia', 'June 23', 'U.S.', 'Trump', 'U.S.', 'Chinese', 'third', 'third', 'Washington', '25 percent', 'USD 200 billion', 'Chinese', 'USD 300 billion', '264 billion', 'Chinese', 'The U.S. Customs and Border Protection', 'CBP', 'Chinese', 'Vietnam', 'Malaysia', 'Cambodia', 'Philippines', 'non-Asian', 'Serbia', 'Mexico', 'Vietnam', 'Vietnam', 'China', 'Vietnam', 'Vietnamese', 'American', 'European', 'Japanese', 'Vietnamese', 'the first four months in 2019', 'U.S.', 'China', '12 percent', 'Vietnam', '32 percent', 'the same period', 'January to May 2019', 'China', 'Vietnam', 'Vietnamese', 'U.S.', 'Vietnam', 'China', '81 percent', 'last year', 'Vietnam', 'U.S.', '72 percent', 'last year', 'Trump', 'Chinese', 'Vietnam', 'Thailand', 'Malaysia', 'May 2018', 'U.S.', 'more than 250 percent', 'Vietnamese', 'Chinese', 'Cambodia', 'June 28', 'the U.S. Embassy', 'Cambodia', 'the “Department of Homeland Security', 'the United States', 'Cambodia', 'Cambodia', 'SSEZ', 'U.S.', '210 kilometers', '130 miles', 'Phnom Penh', 'Chinese', 'Cambodian', 'the Belt and Road', 'Cambodia', 'U.S.', 'the Generalized System of Preferences', '2016', 'Cambodia', 'U.S.', 'Phnom Penh', 'EU', 'GSP', 'the U.S. Embassy', 'two', '2017', 'Cambodia', 'Vietnam', 'Chinese', 'U.S.', 'Cambodia', 'Vietnam', 'U.S.', 'third', 'Southeast Asia', 'U.S.', 'China', 'Southeast Asia', 'Everstream Analytics', 'U.S.-China', 'third', 'Southeast Asia', 'Mexico', 'Serbia', 'January 31', 'the Port of Busan', 'South Korea', 'up to 0.5 day', 'January 23', 'Lunar New Year', 'the Port of New York', 'New Jersey', 'USD 100-250/day', 'USD 75', 'the Port of New York', 'New Jersey', 'two', 'ITC', 'Independence Pkwy and Highway 225', 'earlier in the day', 'the day', 'Deer Park', 'the Houston Ship Channel', 'Tucker Bayou', 'Houston Ship Channel', 'the weekend', 'ITC', 'at least eight', 'This morning', 'Naphtha', 'Xylene', 'Benzene', 'Ten', 'India', 'Wednesday, January 8', 'INTUC', 'AITUC', 'CITU', 'AIUTUC', 'SEWA', 'LPF', 'UTUC', 'ATM', 'Ola', 'Uber', 'the day', 'Sunday', 'Delhi', 'Jawaharlal Nehru University', 'JNU', 'Jantar Mantar', 'New Delhi', 'BJP', 'Hooghly', 'West Bengal', 'Mount Rd', 'Chennai', 'Chennai', '31 August', 'ten', 'four', 'six', 'the All India Bank Employees’ Association', 'New Delhi', 'ten', 'Allahabad Bank', 'Andhra Bank', 'Canara Bank', 'Corporation Bank', 'Indian Bank', 'Oriental Bank of Commerce', 'Punjab National Bank', 'Syndicate Bank', 'Union Bank of India', 'United Bank of India', 'New Delhi', '11 September', 'Indian', 'Cyclone Bulbul', 'the Bay of Bengal', 'Thursday', 'Saturday', '08:30', '680km', 'NNW', 'West Bengal', 'Bangladesh', 'Odisha', 'Andaman', 'Nicobar Islands', 'West Bengal', 'the next 48 hours', 'one-month', '20 August', 'Bengaluru', 'the Ministry of Defence', 'the Indian Army', 'Hyderabad', 'at least 20', 'Indian', '2', 'Lome', 'this year', '15 December', 'Guinea', '29 January', 'the US Justice Department', 'China', 'Huawei Technologies', 'Meng Wanzhou', 'Meng', 'Canada', 'Canadian', 'Meng', 'Huawei', 'China', 'foreign ministry', 'US', 'Chinese', 'Canada', 'Canada', 'Canadian', 'China', 'Meng', 'Vancouver', 'Canada', 'early December 2018', 'China', 'Liu', 'Washington, DC', 'US', 'US', 'Robert Lighthizer', 'US', 'Chinese', 'Huawei', 'two', '1 March', 'US', '24 September', 'USD200 billion', 'Chinese', '10% to 25%', 'China', 'Xinhua', '30 January', 'Chinese', 'annual', \"National People's Congress\", 'early March', 'Chinese', \"the US Trade Representative's\", 'Section 301', 'US', 'China', 'September', '10%', 'US', 'State', 'Defense', 'US', 'US', 'Chinese', 'Chinese', 'US', 'US', 'China', 'IHS Markit Foresight', '2019', 'Friday', '15 March', 'Jakarta', 'Kendari', 'Bandung', 'Pantai Batu Bolong Street', 'Canggu', 'North Kuta', 'Badung Regency', 'Jakarta', 'more than 1,500', 'Jakarta', 'the Ciliwung River', 'at least 17', 'Tangerang', 'Banten', 'the Jakarta Disaster Mitigation Agency', 'South', 'East Jakarta', 'Lenteng Agung', 'Pengadegan', 'Srengseng Sawah', 'Rajawati', 'South Jakarta', 'Cawang', 'Bidara Cina', 'Balekambang', 'Kampung Melayu', 'East Jakarta', 'the North Jakarta New Estuary Fishing Port', 'Nizam Zachman', 'Penjaringan', 'Friday', 'the Masalembu Islands', 'Surabaya Java', 'Balikpapan', 'Borneo Island', '111', '83', 'hundreds', 'the Delhi Police Headquarters', 'Indraprashta', 'Marg', 'Bahadur Shah Zafar Marg', 'Jawaharlal Nehru University', 'New Delhi', 'Everbridge', 'February 5', 'Le Havre', '7:30', 'the Pont du', 'A131', 'Saint-Yigor-d’Yimonville', 'French', 'Lillebonne', 'early December 12', 'Le Havre', 'Ineos', 'Chocolate Bayou', 'Alvin', 'Houston', 'September 19', 'Tropical Storm Imelda', 'INEOS Group, Ltd.', 'the night of March 10', 'Bonito', '300 tons', 'IJsselmeer', 'the Norther Dike of', 'the Rotterdam Hoek', '2am', 'March 11', 'March 11', 'INMET', 'Brazil', 'national meteorological institute', '50', 'Espirito Santo', 'Sao Paulo', 'Santos', '12', 'the Port of Santos', 'Afonso Cláudio', 'Alfredo Chaves', 'Anchieta', 'Apiacá', 'Aracruz', 'Atílio Vivacqua', 'Baixo Guandu', 'Brejetuba', 'Cachoeiro De Itapemirim', 'Cariacica', 'Castelo', 'Conceição Da Barra', 'Conceição', 'Castelo', 'Divino De São Lourenço', 'Domingos Martins', 'Fundão', 'Guarapari', 'Guaçuí, Ibatiba,', 'Ibiraçu', 'Ibitirama, Iconha', 'Itaguaçu', 'Itapemirim', 'Itarana', 'Iúna', 'Jaguaré', 'Jerônimo Monteiro', 'João Neiva', 'Laranja Da Terra', 'Marechal Floriano', 'Muniz Freire', 'Muqui', 'Pedro Canário', 'Pinheiros', 'Piúma', 'Presidente Kennedy', 'Rio Novo', 'Santa Leopoldina', 'Santa Maria De Jetibá', 'Santa Teresa', 'Serra', 'Sooretama', 'São José Do', 'São Mateus', 'Venda Nova', 'Imigrante', 'Viana', 'Vila Velha', 'Vitória', \"Espirito Santo's\", 'Espirito', 'Manila International Container Terminal', 'Christmas', 'New Year', '19.00', 'December 24', '19.00', 'the next day', 'December 31', '19.00', '19.00', 'the next day', 'Interstate 10', 'Waco Street', 'the Greater Fifth Ward', 'Houston', 'Tuesday', 'morning', 'the morning', 'October 11', 'the National Iranian Oil Company', 'NIOC', 'Port of Jeddah', 'Saudi Arabia', 'the Red Sea', 'Friday, October 11', 'about 60 miles', '96 km', 'Saudi', 'Jeddah', '2%', 'October 11', 'London Gateway', 'the United Kingdom', 'March 12', 'German', 'Hamburg', 'several hours', 'HHLA Hamburger Hafen und Logistik AG', 'three', 'Burchardkai', 'around 19,000', 'Logistik AG', 'the day', 'August 29', 'India', 'August 30', 'between 01:00 to 08:00', 'NSICT', 'NSIGT', 'November 1', 'Bharat Mumbai Container Terminals', 'Port of Nhava Sheva', 'November 6', '01.00', '07.00', '13', '11', '3pm', 'April 9', 'Everstream Analytics', 'Pier 2', 'Durban', 'Genoa', 'today', '6 April', 'Mille', 'the Maritime Station', '11:30', 'Interior', 'Matteo Salvini', 'the Committee for Order and Public Security', 'this afternoon', 'today', '15 March', 'Rome', 'the Colosseum to Piazza', 'Madonna', '10:30', 'Madonna', '11:00', 'Florence: Piazza di', 'Santa Croce', 'Genoa', '09:30', 'Milan', 'Scala', '09:30', 'Naples', 'Turin', '09:30', 'Venice', 'Venezia Santa Lucia', 'the National Water Commission', 'NWC', 'Jamaica', 'The National Workers Union', 'NWU', 'NWC', 'NWC', 'NWC', 'Kingston', 'Marescaux Rd', 'Leinster Rd', 'Almost 2,000', 'Friday', 'evening', 'Jamaica', 'Monday, September 2', 'Kingston', 'St. Andrew', 'the umbrella National Council of Taxi Associations', 'NCOTA', 'The Jamaica Association of Taxi Owners and Operators', 'JATOO', 'Japanese', 'around 1.8 million', 'Typhoon Hagibis', 'Iwate', 'Miyagi', 'Fukushima', 'Ibaraki', 'Tochigi', 'Gunma', 'Saitama', 'Chiba', 'Tokyo', 'Kanagawa, Niigata', 'Yamanashi', 'Nagano', 'Shizuoka', 'around 8 million', 'Hagibis', 'Typhoon', 'Japanese', 'at least one', 'seven', 'Kobe', 'Sunday 21 April', 'Sannomiya', 'Chuo Ward', \"the 'Fridays\", 'Tokyo', 'today', '29 November', 'the Shinjuku Chuo Park', 'Kanto', 'Tohoku', 'the next 12 hours', 'Typhoon Neoguri', 'Honshu Island', 'today', 'Japan', 'Between three and five inches', 'Typhoon Hagibis', 'the last two weeks', 'the Japan Meteorological Agency', 'Fukushima', 'Nagano', 'Tokyo', 'Chiba', 'two to three inches', 'Japanese', 'Hokuriku Shinkansen', 'Tokyo', 'Typhoon Hagibis', 'the weekend', 'one to two weeks', 'Nagano City', '50 to 60 percent', 'Tokyo', 'Kanazawa', 'tomorrow', '20 September', 'Tokyo', 'United Nations University', '17:00', 'Kagoshima', 'Central Park', 'Ishikawa', 'Yoshinoya Seminar House', '12:00', 'Okayama (Okayama Station East', '16:30', 'Oita', 'North Exit', '13:00', 'Iwate', 'Kaiun Bridge Riverbed', '16:00', 'Ishikawa', 'Kanazawa', 'Japanese', 'south Shibuya', 'Tokyo', 'Tamagawa Dori (Highway 246', 'Ikejiri', 'Jawaharlal', 'April 29', 'Maharashtra', 'April 2019', 'the polling day', 'Mumbai', 'Thane, Bhiwandi,', 'Kalyan', 'Palghar', 'Maval', 'Customs', 'the next day', 'Jawaharlal', 'Nehru Stadium Marg', 'Dyal Singh College Rd', 'One', 'Intelligence', 'Everstream Analytics', 'April 1', 'Jawaharlal', 'Nehru Port', 'the Port of Nhava Sheva', 'HBL', 'MBL', '16-digit', 'IEC', '20-digit', 'GSTIN', 'India', 'the Gaisano Mall', 'Jose Catolico St Av', 'Dadiangas Rd', '6.4', 'Santos City', 'March 27', 'the Singapore Police Force’s', 'Quality Road', 'March 25', '12:13 PM', 'Jalan', 'Thousands', 'the Sydney Town Hall Square', 'Kent St', 'Cross City', 'May 7', \"Kinder Morgan's\", 'LNG', 'Elba Liquefaction', 'Georgia', 'Kinder Morgan', 'Train 1', 'LNG', 'the end of April', 'May 1', 'US', 'May 7', '2.5 million', 'mt/year', 'Savannah', 'Shell', 'Movable Modular Liquefaction System', 'first', 'LNG', 'first', 'Shell', 'Kinder Morgan, Inc.', 'North America', 'the Jamaica Urban Transit Company', 'JUTC', 'the Kingston Metropolitan Area', 'Tuesday, September 24', 'Monday night', 'Izocam', 'two', 'Turkey', 'Kocaeli', 'Kiplasma', 'Refik Baydur Cd', 'Tarsus', 'Mersin Province', 'approximately 85', 'KwaZulu-Natal', 'Only one', 'Durban', 'Debris', 'Durban', 'Durban', 'Three', 'August 19', 'summer holidays', 'Port of Valencia', 'August 19', 'summer holidays', 'Port of Barcelona', 'October 15', 'the Port of Balboa', 'the year-end', 'August 28', 'Emergency Regulations Ordinance', 'ERO', 'Hong Kong’s', 'ERO', 'Hong Kong', 'Lam', 'August 27', 'Hong Kong', 'ERO', 'the Leftist Riots', '1967', '1', '2', '9', 'the Port of Hong Kong', 'October 23', 'November 9', 'December 3', 'St Petersburg', 'Russia', 'Over 200', '02:00', 'Tuesday, December 2', '150', '80 meters', 'Moscow', 'April 11', 'German', 'Terminal Rosshafen', 'Hamburg', 'Germany', 'the morning', 'April 11', 'Four', 'at least four hours', 'premises', 'Terminal Rosshafen', 'Lebanon', 'Wednesday', 'Akkar', 'Koura', 'Baalbek', 'Batroun', 'Jubail', \"the Public Administration Employee's Association\", 'the Trade Union Coordination Commission', 'Sanaa', '16 March', 'Riyadh', 'Abu Dhabi', 'the United Nations', 'Hodeidah', 'Houthis', 'Yemeni', 'Saudi Arabia', 'UAE', 'Hodeidah', '18 December 2018', 'Saudi Arabia', 'UAE', 'Houthis', 'Hodeidah', 'UN', 'the coming weeks', 'Saudi', 'Hodeidah', 'Houthi', 'at least several months', 'the Red Sea', 'Hodeidah', 'Houthi', 'Saudi Arabia', 'Saudi Patriot air defences', 'UAE', 'UAV attack', 'TerrorismSectors', 'IHS Markit Foresight', '2019', 'TerrorismSectors', 'Marine', 'Ground cargoThe Houthi', 'Sanaa', '16 March', 'Riyadh', 'Abu Dhabi', 'the United Nations', 'Hodeidah', 'Houthis', 'Yemeni', 'Saudi Arabia', 'UAE', 'Hodeidah', '18 December 2018', 'Saudi Arabia', 'UAE', 'Houthis', 'Hodeidah', 'UN', 'the coming weeks', 'Saudi', 'Hodeidah', 'Houthi', 'at least several months', 'the Red Sea', 'Hodeidah', 'Houthi', 'Saudi Arabia', 'Saudi Patriot air defences', 'UAE', 'UAV attack', 'IHS Markit Foresight', '2019', 'Lima', 'Callao', '24-hour', 'Monday, December 16', 'November', 'Lima', 'Lima', 'Limeharbour', 'South Quay', 'Crossharbour', 'September 27', 'the Port of Piraeus', 'this week', 'Hellenic Petroleum and Motor Oil Hellas', 'over a week', 'October 2-3', 'the National Union of Rail', 'Transport Workers', 'RMT', 'Victoria', 'Central', 'the London Underground', 'the Associated Society of Locomotive Engineers and Firemen (ASLEF) union', 'London', 'Carretera Santiago de Queretaro - Villa Apaseo', 'El Alto', 'Los Angeles', 'LAUSD', 'Los Angeles', 'the day', 'Los Angeles Unified School District', 'today, January 14', 'At least one', 'over 3,000', 'Los Angeles City Hall', 'Grand Park', 'N Spring St', 'W 1st', 'around 9:30 AM', '10:30 AM', 'Grand Park', 'LAUSD headquarters', 'S Beaudry Ave', 'W 3rd', 'Rideshare Drivers United', 'one-day', 'Los Angeles County', 'Orange County', '25 percent', 'at least $28', 'the Uber Greenlight Hub', 'Redondo Beach', 'January 8', 'the Port of Felixstowe', 'January 2', 'the Port of Felixstowe', 'at least around', '24-hours', 'February 27', 'the Port of Manzanillo', 'Mexico', '97 percent', 'November 22', 'the Port of Tianjin', 'the morning', 'the evening of', 'November 23', 'Port of', 'Fuzhou', '04:00', '13:00', 'April 10', 'February 19', 'Port of Gwangyang', '19:00', '12:00', 'November 21', 'the Port of Qingdao', 'midnight', 'November 23', 'March 27', \"Port of Dalian's\", '01:00-12:00', 'March 27', 'Port of Houston', 'March 29', 'February 26', 'the next day', 'Port', 'Ningbo', 'March 27', 'Port of Yokohama’s', '21:00', 'March 27', 'the Port of Nagoya', 'the morning', 'April 10', 'the next day', 'afternoon', 'May 9', 'Central America', 'Gulf of Mexico', 'Port of Houston', 'January 10', 'Port of Fuzhou', 'China', 'between January 11 and 12', 'December 9', 'the Port of Tianjin', 'the midnight of December 9', 'the morning of the next day', 'the evening of March 9 to the next day morning', 'Qingdao', 'the Port of Yokohama', 'the morning', 'April 10', 'the late evening', 'some 40', 'Yokji Island', 'Tongyeong', 'Korea', 'East China', 'Seoul', 'January 11', 'Ulsan Korea', 'China', 'Tongyeong', '1330', 'UTC', 'January 11', 'April 23', 'NP Bangpakong', '1', '8', '8 nautical miles', 'Koh Chang', 'Trat Province', 'LPG', '7', 'Vietnam', 'Laem Chabang', 'Laem Chabang', 'April 12', 'LyondellBasell', 'Channelview', 'Texas', \"Intercontinental Terminals Company's\", 'ITC', 'Houston', 'April 5', 'the end of April 2019', 'April 2', 'Busan New Container Terminal', 'April 7', 'Thursday', '200', 'more than 40', 'Russia', 'Vladimir Putin', 'last Sunday', 'Kremlin', 'Russia', 'Alexey Navalny', 'United Russia', 'summer', 'Kremlin', 'early Thursday', 'morning', '43', 'four days', 'Russia', 'Vladimir Putin', 'United', 'Russia', 'Thursday', 'Alexey Navalny', 'Anti-Corruption Foundation', 'FBK', 'August', 'FBK', 'Chelyabinsk', 'FBK', 'Saransk', 'Golos', 'Thursday', 'More than 1,000', 'Navalny', 'more than 200', 'Moscow', 'Navalny', 'Russia', 'Kremlin', 'United Russia', 'more than a third', 'Moscow', 'Sunday', 'St Petersburg', 'that morning', 'Russia', 'Siberia', 'At least 17', 'Ulan-Ude', 'Ulan-Ude', 'Sunday', 'evening', 'Moscow', 'Russia', 'recent years', 'about 60,000', 'thousands', 'More than 2,000', 'the summer', 'Navalny', 'Putin', 'Putin', 'United', 'Russia', 'Russian', 'Kremlin', 'United Russia', 'Kremlin', 'Communists', 'Kremlin', 'Moscow', 'United', 'Russia', 'Kremlin', 'Russia', 'Navalny', 'FBK', 'the summer', 'Russia', 'Kremlin', 'Russia', 'USD 2.5 million', 'Los Angeles', 'Californa', 'Jeffree Start Cosmetics', 'Skin Frost Highlighter', 'Velour Lip Liners', 'Magic Star Concealer', 'Thursday', 'Malaysia', 'Singapore', 'Malaysia', 'pre-October 2018', 'Singapore', 'pre-December 2018', 'a month', 'Singapore', 'Malaysia', 'two', 'February', 'Malaysian', 'Greek', 'Singapore', 'Singapore', 'Malaysian', 'Singapore', 'Malaysian', 'Johor', 'two', 'Saturday', 'Greece', 'Malaysia', 'Polaris', 'Johor Baru Port', 'Singapore', 'Greek', 'Tanjung Pelepas', 'Malaysia', 'Greek', 'the Malaysian Marine Department', 'Singapore', 'Malaysia', 'Singapore', 'Saturday', 'Malaysia', 'Singapore', 'last year', '2018', 'Malaysian', 'Johor', 'Malaysian', 'Singapore', 'Singapore', 'Malaysia', 'last month', 'Singapore', 'Malaysia', 'September 26', 'Malaysia', 'up to 20.09 percent', 'Turkish', 'Singaporean', 'Turkish', 'Colakoglu', 'Diler', 'Singaporean', 'Natsteel Holdings', 'Natsteel', '5.99 percent', '17.65 percent', 'Singapore', 'the past two days', 'nearly 4,000', 'Kota Tinggi District', 'The Malaysian Meteorological Department', 'Kota Tinggi', 'Segamat', 'Muar', 'Batu Pahat', 'Kluang', 'Pontian', 'Kulai', 'Bahru', 'Tangkak', 'over 2,000', 'Pasir Gudang', 'last week', 'Around 200', '15 March', 'Friday', '15 March', 'a ‘Global Climate Strike For Future’', 'Kuala Lumpur', 'UTM Kuala Lumpur', 'Jalan', 'Yahya Petra', 'Kampung Datuk Keramat', '14:30', 'George Town', '17:10', 'Universiti Sains', 'Malaysia', 'Penang', 'March 1', 'Malaysia', 'the Customs Act', 'five', 'the past two weeks', 'five', 'four', 'Malaysia', 'Around 140', 'Port Klang', 'Penang Port', 'more than 200', 'Malta', 'Energy Ministry', 'Saturday', 'Saturday', 'Monday', 'Tuesday, January 22', 'Energy Ministry', 'the European Union', 'Malta', '6:00 PM', 'Malta', 'Football Referees Association', 'MFA', '5 April', 'MFA', 'Malta', '23:59', 'Sunday 13 January', 'Maltese', 'Malta', '23:59', 'Thursday 21 March', 'Malta', '23:59', 'Sunday 24 February', 'Malta', 'Thursday', 'Libyan', 'Libyan', '30 miles', 'Wednesday morning', 'the Malta Law Courts', 'Republic Street', 'Valletta', 'the Armed Forces of Malta’s Explosives Ordinance Department', 'Republic Street', \"St. Lucia's Street\", 'Strait Street', 'Malta', '23:59', 'Wednesday 4 December', 'up to 75 kilometres per hour', 'Valletta', 'Malta', '23:00', 'Friday 15 March', 'up to 75 kilometres per hour', 'Valletta', 'Malta', '23:59', 'Sunday 21 April', 'up to 75 kilometres per hour', 'Valletta', '18:00', 'Monday 14 January', 'Malta', 'up to 75 kilometres per hour', 'Valletta', 'Maltese', 'Maltese', 'today', 'daily', '06:00', '2 November', 'Birgu', 'Valletta Harbour', 'Chinese New Year’s', '•\\tPort of Kaohsiung', '16:00', 'February 4', 'February 6, 2019', '•\\tPort of Keelung -', '16:00', 'February 4', '00:01 of February 7, 2019', '•\\tPort of Taichung', '16:00', 'February 4', 'February 6, 2019', '•\\tPort of Taipei', '16:00', 'February 4', 'February 6, 2019', 'Vietnamese', 'January 25, 2019', 'more than 24,100', '7,000', 'Around 3,000', 'more than 90 days', 'Marine Ave', 'Redondo Beach', '11:00 AM', 'Monday, March 25', 'United', '25 percent', 'at least $28', 'Approximately 50', '12:00 PM', 'one-day', 'Uber', 'Los Angeles', 'Orange', 'Rideshare Drivers United', 'Sydney', '5 November', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', '6 November', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'October 31', 'Sydney', 'November 1', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'September 16', 'Port Authority of Singapore', 'Southeast Asia', 'Indonesia', 'Singaporean', 'December 2', 'Malacca', 'Singapore', 'the Straits of Malacca', 'Singapore', 'the International Maritime Organization', 'Singapore', 'at least 3.5 metres', 'the Straits of Malacca', 'Singapore', 'less than 12', 'December 2', 'Malacca', 'Singapore', 'the Straits of Malacca', 'Singapore', 'the International Maritime Organization', 'Singapore', 'at least 3.5 metres', 'the Straits of Malacca', 'Singapore', 'less than 12', 'January 29', 'Jeddah', 'Saudi Arabia', 'January 27 and January 28', 'Jebel Ali', 'UAE', 'the Port of Jeddah', 'the Middle East', 'North Africa', 'Indonesian', 'Muara Baru Port', 'North Jakarta', '30', 'February 23', 'one', '15:00', 'early morning', 'the next day', '18:00', 'March 10', 'Thoi An', '12', 'Ho Chi Minh City', '23:00', 'September 12', 'twenty one', 'USD 27,978', 'EUR', '25,609', 'first', 'June 19', 'Guangzhou', 'between 06:00 and 18:00', 'November 18', 'the Port of Shanghai', 'April 25', 'Meituan Dianping', 'Xiasha', 'Hangzhou', 'Jiangsu', 'Yancheng', 'Jiangsu', 'Shenzhen', 'Guangdong', 'Meituan Dianping’s', 'Meituan Dianping', 'Melbourne', '10:00 AM to 2:00 PM', 'Thursday, September 26', 'Italian', 'first', 'three', 'December 10', 'Cgil', 'Cisl', 'Uil', 'December 10', 'Santos Apostles', 'Rome', 'two', 'December 12 and December 17', 'Arcelor Mittal', '4,700', '2,900', 'Metro Manila', 'Typhoon Kammuri', 'Muntinlupa', 'Manila', 'Quezon City', 'LRT-1', 'LRT-2', 'MRT-3', 'Philippines National Railway', 'Metro Manila', 'Wednesday', 'Manila Water', 'Metro Manila', 'Rizal Province', 'between six and 21 hours', 'first', 'the East Zone', 'Metro Manila', 'Makati', 'Mandaluyong', 'Pasig, Pateros', 'San Juan', 'Taguig', 'Marikina', 'Quezon City', 'Manila', 'Angono', 'Antipolo', 'Rizal Province', 'the next three months', 'season', 'season', 'May', 'El Nino', 'El Nino', 'Manila Water', 'Manila', 'the coming months', 'season', 'September 24', 'Mexican Navy', 'Coast Guard', 'over 80 kilograms', 'CMA', 'the Pacific Ocean Port', '70', 'approximately 82 kilograms', 'September 18', 'French', 'CGM', 'Guayaquil', 'Ecuador', 'Yokohama', 'Japan', 'Mexico', 'Victoria', 'Kilometer 20', 'Zaragoza', 'at least two', 'Mexico', 'today', 'the UN Climate Summit', 'New York', 'Monterrey', 'Nuevo Leon', '08:30', 'Paseo de Montejo', '08:00', 'the Angel-Zocalo', 'Mexico City', '14:00', 'second', '27 September', 'Ciudad Victoria', 'today', 'the United Workers of San Fernando', 'today', '10 February', 'Toluca', 'Paseo Cristobal Colon', 'Avenida Paseo Tollocan', 'March 20', 'the Minas Gerais Public Ministry', 'Governador Valadares', 'Espirito Santos', 'Rio de Janeiro', '2006', '24 million', '5.57 million', 'USD 6.31 million', 'Linhares', 'Governador', 'Valadares', 'Singapore', 'five', 'Greece', 'Hirado', 'Singapore Vessel Traffic Information System', 'VTIS', 'Dublin Port', 'more than 400,000', 'Hong Kong', 'Tanger-Med', 'Tanger-Tetouan-Al Hoceima Region', '2.200 tonnes', 'November 11', 'the coming days', 'up to 12 hours', 'the Port of Tanjung Pelepas', '9-hours', '7-hours', 'Umiavut', '8801591', '2:50am', 'March 26', 'Barcelona', \"Mossos d'Esquadra\", 'Barcelona', 'the Catalan Students Union', '28 October', 'Catalan', 'Dourados', 'Mato Grosso', 'two', 'Santos', 'Sao Paulo', 'Europe', 'Sydney', 'New South Wales', 'thousands', 'Equinor', 'the Great Australian Bight', 'Tangiers', 'Tanger-Med Port', 'Tanger-Tetouan-Al Hoceima Region', '4.4 tonnes', 'Tangiers', 'Tanger-Med Port', 'Tanger-Tetouan-Al Hoceima Region', '8.830 tonnes', 'Spanish', 'Valongo', 'Porto de Santos', 'São Paulo State', 'DIG', 'two', 'the Porto de Santos', '27 tonnes', 'Khari', 'Karachi', 'Pakistan Coast Guards', 'PCG', 'around 2670 kilograms', 'The Sagunto City Council', 'the Port Authority of Valencia (APV', 'the Defence Ministry', 'Saudi', 'Friday', 'one', 'MIT', 'Salubanga', 'Parigi Moutong', 'Central Sulawesi Province', 'the Parigi Moutong', 'Poso', 'Torue', 'MIT', 'two', 'July', 'MIT', 'seven last year', '45', 'Islamic', 'MIT', 'Santoso', 'July 2016', 'Santoso', 'Jakarta', 'Bali', 'recent years', 'Indonesia', '05:58.22N', 'Lome', 'three', 'Greek', 'Aristotle', 'four', 'one', 'Greek', 'one', 'Georgian', 'two', 'Filipino', 'March 20', '4-5 days', 'the Port of Montreal', 'QC', 'March 12', 'coming weeks', 'Montreal', 'March 20', '4-5 days', 'the Port of New York', 'NY', 'March 12', 'coming weeks', 'New York', 'March 20', '4-5 days', 'the Port of Oakland', 'CA', 'March 12', 'coming weeks', 'Oakland', 'March 20', '4-5 days', 'the Port of Savannah', 'as recently as March 12', 'coming weeks', 'Savannah', 'the Port of Tanjung Pelepas', '13-hours', '10-hours', 'the Port of Tanjung Pelepas', 'around 7-hours', '5-hours', 'March 20', '4-5 days', 'up to 3 days', 'the Port of Vancouver', 'BC', 'March 12', 'coming weeks', 'Vancouver', 'Lake Manzala', 'Port Said', 'the Ministry of Interior', '369', 'South Coast Road', 'Durban', 'two', 'overnight', 'Marina Barcelona', '92', 'Moll de Llevant', 'Monday, December 16', 'the Deep South', 'Louisiana', 'Mississippi', 'Alabama', 'At least 27', 'three', 'the National Oceanic and Atmospheric Administration', 'NOAA', 'at least three', 'two', 'Alabama', 'one', 'Louisiana', 'one', 'Kentucky', 'Dozens', 'Louisiana', 'Mississippi', 'SOE', 'Mississippi', 'at least 25', 'Hundreds', 'Louisiana', 'one', 'DeRidder', 'an estimated', '63-mile', 'Vernon', 'Rapides', 'Alexandria', 'the National Weather Service', 'NWS', 'Alexandria', 'Pineville', 'Mississippi', '30,000', 'Mississippi', 'Alabama', 'Louisiana', 'Louisiana', 'first', 'NWS', 'the end of May', '12-day', '300', '22', 'at least 14', 'Monday', 'first', 'May', 'the winter', 'United States', 'Louisiana', 'Mississippi', 'Alabama', 'the Florida Panhandle', 'Florida', 'Georgia', 'Tuesday', 'Mongla', 'Tropical Storm Matmo', 'Bulbul', 'Montreal', '24-hour', 'Wednesday', 'May 8', 'the Association of Professional Uber Drivers', 'Chinese', 'Fuzhou Port', 'Fujian province', 'Port of Rizhao', 'Qingdao', 'Yingkou Port', 'Dalian', 'Australian', 'late February', 'Chinese', 'Australian', 'five', 'Dalian Bay', 'Beiliang Port', 'early March', 'Fangcheng', 'Guangxi province', 'China', 'Australian', 'the Port of Guangzhou', '45-days', 'October 17', 'more than 3,800', 'three', 'Vietnam', 'Hai Phong', 'Vung Tao', 'Ho Chi Minh City’s', 'Cat Lai', 'the General Department of Vietnam Customs', 'Vietnamese', 'January 14', 'New Jersey', 'the Lincoln Tunnel', 'The Lincoln Tunnel', 'Trans-Hudson', 'New York', 'New Jersey', 'Pakistani', 'the Muttahida Qaumi Movement', 'MQM', 'Karachi', 'late Monday', 'MQM', 'six', 'UC', 'New Karachi', 'MQM', 'Islamist', 'Karachi', 'MQM', 'Pakistani', 'recent years', 'Pakistan', 'Karachi', 'December 20', 'MSC Mediterranean Shipping Company', 'French', 'France', 'Le Havre', 'Marseille', 'September 5', '14:00', 'Import Block G2', 'Terminal 1', 'Import Block G2', 'Thursday', 'the Mundra Port', 'Kandla Port', 'Pakistan', 'the Gulf of Kutch', 'two', 'Pakistani', 'Harami Nala', 'the Coast Guard', '60', 'CISF', 'the Nayara Energy', 'Vadinagar', 'Gujarat', 'Thursday', 'earlier in the week', 'Navy', 'Karambir Singh', 'Pakistan', 'Jaish-e-Mohammad', 'Singh', 'Pakistan', 'JeM', 'last year', 'the year before', 'Indian Navy', 'JeM', 'Indian', 'hundreds', 'every year', 'April 15', 'Mundra Port', 'Kandla International Container', 'Kandla Port', 'Gujarat', '50', 'the Port of Los Angeles', 'N Harbor Blvd', 'Swinford St. Authorities', 'Hundreds', 'United Teachers Los Angeles', 'City Hall at Grand Park', 'N Spring St', 'UTLA', 'Hundreds', 'United Teachers of Los Angeles', 'Grand Park', 'Spring St', 'more than 32,000', 'Los Angeles', 'the Los Angeles Unified School District', 'S Beaudry Ave', 'W 4th', 'Grand Park', 'Los Angeles City Hall', 'City Hall', 'N Spring St', '11:30 AM', 'Friday', 'May 3', 'Los Angeles', 'Los Angeles', 'Approximately 50', 'Department of Water and Power', '3:00 PM', 'Los Angeles City Hall', 'N Spring St', '12:00 PM', 'Friday, March 15', 'California', 'US', 'Approximately 120', '3:00 PM', 'October 29', '6', 'Avenida Separador Industrial', 'October 28', 'National Police in', 'Callao', 'CNV', 'VCP', 'Amsterdam', 'The Hague', 'Rotterdam', '6:00 AM', '7:06 AM', '66 years', 'April 1', 'the Port of Rotterdam', 'Ecuador', 'Keilestraat', 'April 1', 'the Port of Rotterdam', 'Botlek', 'Rotterdam', 'Rotterdam Centraal Station', 'Friday', '50', 'Leyla Güven', '8 April', 'Shell Pernis Refinery', 'Vondelingenweg', 'Pernis', 'Rotterdam', 'Rotterdam', 'the Zuidplein Hoog', 'Metroplein', 'Dutch', 'September 24', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '04:00 to 06:00', 'September 25', 'September 18', 'Operations', 'these two hours', 'August 30', 'Pier 2', 'the Port of Durban', 'August 29', 'September 18', 'the Port of Durban', 'South Africa', 'Pier 2', 'October 1', 'October 1', 'Oman', '24 hours', 'the Sultanate of Oman', 'Port of Sohar, Port of Salalah', 'the Port of Duqm', 'Jawaharlal Nehru University', 'metro', 'New Delhi', 'The Udyog Bhawan', 'Lok Kalyan Marg', 'Central Secretariat', 'Rashtrapati Bhavan', 'the Office of the President', 'The New Jersey Department of Transportation', 'December 1', 'NJDOT', 'Interstate 78', 'Interstate 80', 'Interstate 287', 'I-80', 'Pennsylvania', 'exit 43', 'I-287', 'I-78', 'Pennsylvania', 'exit 29', 'I-287', 'I-287', 'exit 21', 'I-78', 'New York', 'Contecon Manzanillo S.A.', 'C.V.', 'the Port of Manzanillo', 'Manzanillo', 'March 6, 2019', '100%', 'the month of March', 'April 10 to 30', '2 hours', '2 hours', '• As', 'May 1', 'Contecon Manzanillo', '1 hour', '1 hour', 'October 21', 'the European Commission', 'EC', 'October 31', 'Brexit', 'UK', 'third', 'EU', '24 Hour Rule', 'London Gateway', 'EU', 'London Gateway', 'ENS', 'EU', 'EU', 'EU', 'EU', 'Cartagena', 'Hong Kong', 'Victoria Harbour', 'New Year', 'The Lunar New Year', 'January', 'At least 12,000', 'the New York State Nurses Association', 'today', 'April 2', 'three', 'Montefiore Hospital', 'Mount Sinai Hospital', 'New York-Presbyterian Hospital', 'Uber and Lyft', 'New York', 'US', 'Wednesday', 'New York', 'the New York Taxi Workers Alliance', 'Uber or Lyft', 'between 7:00 AM', '9:00 AM', '30', 'First Energy', 'New York', 'New Jersey', 'Pennsylvania', 'Dozens', 'Friday, September 27', 'Thousands', '-Wellington', 'Parliament', 'Victoria University', 'Dunedin Dental School\\n-Christchurch', 'Cathedral Square\\n-Auckland at Aotea Square \\n\\n', 'over a dozen', 'The ‘School Strike 4 Climate', '15 March', 'Gatherings', 'Auckland: Aotea Square', '12:00-15:00', '13:00-15:00', 'Dunedin', 'Octagon', '12:00-15:00', 'Kapiti: District Council', '09:00-15:00', 'Russell', '08:45', 'Wellington', 'Parliament', 'Lambton Quay', 'Whanganui', 'Virginia Lake', 'approximately 11,000', 'Dominion Energy', 'Jamestown', 'Newport News', 'Williamsburg', 'Central Virginia', 'the Port of Ningbo', 'the Port of Ningbo', 'China', 'October 2', 'the Port of Manila', '0', 'Manila North', '3', 'Manila South', 'December 10', 'Manila', '0', 'Manila North', '0', 'Manila South', 'the Port of Manila', 'zero', 'October 14', 'the Port of Manila', 'Manila South', 'North', 'October 23', 'the Port of Manila', 'September 16', 'the Port of Manila', 'Manila', 'Manila South', 'the Port of Jeddah', 'Communications, Electrical and Plumbing Union of Australia', 'CEPU', \"DP World Australia's\", 'Brisbane Terminal', 'November 14', '6:00 to 10:00', 'March 1', 'the Port of Busan', 'South Korea', 'September 3', 'the Port of Manila', 'Manila', 'Manila South', 'the French National Railway Company', 'Normandy', 'Paris', 'Le Havre-Fecamp', 'Rouen-Dieppe', 'Rouen-Elboeuf', 'January 21', 'January 20', 'January 21', 'around 0.5 days', 'November 28', 'the evening of', 'November 27', 'the morning of', 'November 28', 'Metrobus', 'the Transdev Amalgamated Transit Union', '689', '84-day', 'Thursday, October 24', 'Transdev', 'approximately six percent', 'Metrobus', 'Northern Virginia', 'the Richmond Highway Express', 'REX', '17B', '17', '17H', '17', '17L', '17', '8', '18J', '18P', '29C', '29', '29', '29N', '29W', 'C4', 'S80', 'S91', 'October 14', 'the National Weather Service', 'League City', 'TX', 'Galveston', 'Houston', 'Texas City Ship Channels', '20 nautical miles', '05:00', 'October 15', 'West Bay', 'San Luis Pass', '15 to 40', 'the Galveston Ship Channel', 'West Bay', 'Galveston Bay Entrance', 'North Jetty', 'Galveston 221', 'Galveston Pier 21', 'the Galveston Causeway', 'Eagle Point', 'the Texas City Channel', 'the Houston Ship Channel', 'Galveston', 'Houston', 'Texas City', 'nearly 16,000', 'Comcast', 'Oakland', 'the Oakland Education Association', 'the Oakland Unified School District', 'seven-day', 'Approximately 3,000', 'approximately 37,000', 'Broadway', 'Oakland', 'the Oakland Unified School District', 'Oakland Technical High School', 'Skyline High School', 'Oakland High School', 'West Oakland Middle School', 'Fremont High School', 'the Oakland Education Association', 'Intelligence', 'Everstream Analytics', 'January 8', 'French', 'at least January 11', 'French', 'European', 'Antwerp', 'French', 'at least mid-January 2020', 'European', 'Sendai Port', 'January 20', 'Nagaokahama cho', 'Miyagi', '1.5 billion yen', 'EUR', '11,979,531', 'Imoto Shogun', 'Kobe city', 'Sendai Port', 'Nanaigahama Town', 'March 9', 'ExxonMobil', 'Karachi', 'March 9', 'January 11', 'at least a week', 'March 15', 'the Ministry of Maritime Affairs', 'Eni Pakistan', 'Pakistan BV', 'Oil and Gas Development Company', 'Pakistan Petroleum Limited', 'ExxonMobil', 'Karachi', 'December 25', 'the Port of Bremerhaven', 'Maersk Gateshead', 'the morning of January 6', 'the Kwai Tsing Container Terminal', 'the Port of Hong Kong', 'the evening', 'November 4', 'Lindenhof', 'Bremen', 'November 1', 'about 80 to 300 meters', 'December 23', 'the Singapore Strait', 'Nipa', 'Indonesia', 'Qing Dao', 'China', 'February 25', 'Santos', 'SP', '7 AM', 'February 25', 'Sindipetro', 'Santos', 'Santos', 'Barcelona', 'one hour', 'Gran Via de les Corts Catalanes', 'Barcelona', '40,000', 'Catalan', 'Catalan', 'Gran Via de les Corts Catalanes', 'Barcelona', 'thousands', 'Catalan', '21 January', 'two', 'Chinese', '20-meter', 'COSCO', 'Da Tai', 'January 10', 'Victoria Port', 'Brazil', 'One', 'November 25', 'three', 'around 08:00', 'November 19', 'Zhoushan, Zhejiang', 'two', 'Sims Metal Management', '1 Linden Avenue East', 'Jersey City', 'New Jersey', '1000-3000 feet', 'the Grenville Yard', 'February 25', 'Meituan Dianping', 'Jinan', 'Linyi', 'Dongguan', 'last week', 'Meituan Dianping', 'March 25', 'M20', 'Kent', 'Brexit', 'Kentish', 'Dover', 'Kent', 'M20', 'Junctions 8', '9', 'Dover', 'Monday', '14-mile', 'London', 'London', 'London', 'two', 'two', 'London', 'Monday', 'M20', 'Kent', 'Brexit', 'Kentish', 'Dover', 'Kent', 'M20', 'Junctions 8', '9', 'Dover', 'Monday', '14-mile', 'London', 'London', 'London', 'two', 'two', 'London', 'Brexit', 'April 12', 'M20', 'Operation Stack', 'up to 11,000', 'M20', 'Manston', 'M26', 'Dover', 'Brexit', 'the Dover Harbour Board', 'last week', 'two minutes', 'France', '17-mile', 'the United Kingdom', 'the European Union', 'October 23', 'Melina', '938N', 'Pier A', 'Port of Long Beach', 'APM', 'Port of Los Angeles', 'ETA', 'October 23', 'Melina', '938N', 'Pier A', 'Port of Long Beach', 'APM', 'Port of Los Angeles', 'ETA', 'September 24', 'the Port of Colombo', 'more than 24', 'October 23', 'Melbourne Cup Day', 'November 5', 'November 4 and 5', '22.00', '06.00', 'November 6', 'December 10', '16:00', 'December 12', 'December 13', '16:00 to 23:00', 'December 12', 'March 6', 'Alexandria Port', \"Port's\", 'March 5', 'December 26', '13:30 to 15:30', 'the Port of Dalian', 'approximately 30%', 'February 15', 'between 10:00 and 11:00', 'the Port of Southampton', 'United Kingdom', 'November 22', 'Durban Container Terminal', 'between 80 to', 'the past week', 'November 23', 'December 30', 'DP World Southampton', 'December 29', '23:30 to December 30', 'Vessel', 'DP World', 'the Port of Southampton', 'December 6', 'about 03:30 hours', 'Earlier this morning', '2 hours', '20.30', 'September 30', 'Pier 2, Port of Durban', '19:00', 'October 7', '102', '03:15', '04:30', '04:45', 'October 8', 'Pier 1', 'the Port of Durban', '15.45', '22.15', 'October 20', 'the Port of Durban', '22:30', 'October 3', '02:30', 'the next day', 'October 3', '02:00', 'the next day', '01h30', '05:00', 'April 5', '06:00', 'Intelligence', 'Everstream Analytics', 'Southampton', '16:00', '09:30', 'March 29', 'the Port of Southampton', 'March 28', 'March 29', 'this morning', 'March 16', 'the Port of Southampton', '10:00 to 21:15', 'the entire weekend', 'January 5', '13:00', 'Pier 1 Container Terminal', 'the Port of Durban', 'Busan', 'BNCT', '70-75 percent', 'APM Terminals', 'the Port of Rotterdam', 'November 7', '11:00 to 14:00, 15:00 to', '16:30 and from 23:00 to 00:30', 'February 14', 'between 03:00 and 09:00', 'the Port of Southampton', 'United Kingdom', 'the day', 'Malaysia', 'Meteorological Department', 'Johor', 'Pahang', 'Sabah', 'Terengganu', 'Segamat', 'Kluang', 'Mersing', 'Kulai', 'Kota Tinggi', 'Johor', 'Jerantut', 'Maran', 'Kuantan', 'Bera', 'Rompin', 'Pahang', 'Dungun', 'Kemaman', 'Terengganu', 'Northeast', 'nine', '10', 'Johor', 'two', 'Pahang', 'between 40kph and 50kph', '3.5', 'Kelantan', 'Terengganu', 'Pahang', 'East Johor', 'Japan', 'first', 'Group of Twenty', 'G20', 'Osaka', 'International Exhibition Center', 'June 28-29, 2019', 'G20', 'annually', '20', 'Japanese', 'Osaka Port', 'Kansai International Airport', 'KIX', 'Osaka', 'KIX', 'third', 'Japan', 'G20', '50 percent', 'four days', 'Osaka', 'KIX', 'Osaka Bay', 'KIX', 'Rinku', 'June 27 and June 30', 'June 27-30', '10', 'Hanshin Expressway', 'No.1', 'the Gulf Line', 'about 160 kilometers', 'KIX', 'morning', 'late evening', 'Meishin Expressway', 'Osaka', '9', 'Osaka Station', 'Nakanoshima', 'Tenma', 'Osaka Castle', 'Honcho', 'Uehoncho', 'Namba', 'Tennoji', 'Nanko', 'Kansai Airport Station', 'three', 'Kansai', 'Kansai International Airport', 'Osaka International Airport', 'Itami Airport', 'Kobe Airport', 'Kansai', 'Osaka Airports', 'June 27 and June 30', 'KIX', '1,000 meters', 'Osaka Port', 'KIX', 'June 24–30', 'Japan', 'noon', 'at least the day', 'June 3–19', 'two', 'KIX', '4-days', 'Everstream Analytics', 'KIX', 'Osaka', 'June 27 and 30', 'G20', 'July 1', 'Tokyo', 'Narita Airport', 'KIX', '3-days', 'Typhoon Jebi', '2018', 'calle de Genova', 'Madrid', 'hundreds', 'the Madrid Assembly', 'Uber', 'Cabify', 'March 18, 2019', 'Dublin Port', 'last week', 'Thursday, March 14', 'Kelly', 'Dublin', 'Rotterdam', 'The Netherlands', 'Saturday', 'hundreds', 'the Civic Alliance', 'Managua', 'Daniel Ortega', 'Ortega', 'Nicaraguan', '107', '164', 'six', 'the United States', 'Uruguay', 'European', 'Nicaraguan', 'Saturday', 'the European Union', 'Ortega', 'Nicaragua', '770', 'Nicaragua', 'last April', '112', 'late February', '50', 'March 15th', 'the Civic Alliance', 'two', 'Nicaragua', 'the coming weeks', 'months', 'Italian', '115 kilograms', 'Gioia Tauro', 'Tuesday', 'San Antonio', 'Chile', 'Gioia Tauro', 'Panamanian', 'Rodman', 'Livorno', 'Italy', 'about 23 million', '26.3 million dollars', 'Colombia', 'April 9, 2019', 'over 43 tons', 'the Port of Barranquilla', 'Cartagena', 'Santa Maria', 'the last month', 'The Magdalena River', '8.4 meters', '200 meters', '180 to 200 meters', '8.5 meters', 'up to 200 meters', '8.4 meters', '180 meters', '8.7 meters', 'Los Angeles Department of Water and Power', 'Pacific Palisades', 'Pakistani', 'Islamabad', 'Karachi', 'Lahore', 'Peshawar', 'Quetta', 'Rawalpindi', 'Rahim Yar Khan', 'April 1', 'Monday', 'some 1,525 feet', 'Pakistan Railways', 'millions', 'Pakistani', 'the Punjab Institute of Cardiology', 'Lahore', 'December 11', 'Friday', 'The Supreme Court Bar Association of Pakistan', 'SCBAP', 'the High Court', 'Islamabad', 'Lahore', 'Quetta', 'Karachi', 'Hyderabad', 'Sindh Province', 'several days', 'the National Institute of Child Health', 'Karachi', 'Two', 'Drigh Road Railway Station', 'Karachi', 'Lahore', 'today', 'Karachi', 'the Gul Bai Flyover', 'the Shershah Colony', 'several kilometers', 'several hours', 'February 19', 'Pakistani', 'Indian', 'India', '200%', 'Pulwama', 'Jammu', 'Kashmir', '300', 'Wagah', '75%', 'India', '600-800', 'Karachi, Colombo', 'Dubai', 'Indian', 'between April and May', 'Pakistan', 'India', 'March 27', 'Karachi customs', '3.77 million', 'EUR', '23,825', 'Faisalabad', 'Malaysia', 'the Pakistan International Container Terminal', 'January 2', 'Palau', 'MSC London', 'Pengjia', 'Taichung', 'Busan', 'Kaohsiung', 'January 2', '8:30 AM', '5', '15', '50', 'today, Friday,', 'February 22, 2019', '51', 'Albrook', 'Central American', 'Paradip Port', 'Cyclone Fani', 'Paradip Port', 'Odisha', 'Visakhapatnam Port', 'Andhra', 'Leon Cortes', 'Paseo Colon', '12:00 PM', 'Friday, September 27th', 'the same day', 'Global Climate Strike', 'San Juan de Dios Hospital', 'Paseo Colon', 'Calle 14', 'Tuesday', 'Saaremaa', 'Curaçao Pearl', 'March 27, 2019', 'Cuxhaven', 'Hamburg', 'March 13', 'several months', 'Cuxhaven', 'Steubenhöft', 'Cuxhaven', 'March 21', 'Saaremaa', 'the Muetzelfeldt Yard', 'around noon', 'Patrick Terminals Melbourne', '2', 'between January 3', '16', '2', 'The Pennsylvania Department of Transportation', 'the Pennsylvania Turnpike Commission', 'Winter Storm Ezekiel', 'Interstate 78', 'Route 33', 'New Jersey', 'Interstate 80', 'Interstate 81', 'New Jersey', 'State Route 33', 'Interstate 80', 'U.S.', '22', 'Interstate 81', 'Interstate 80', 'New York', 'Interstates 84 and 380', 'Pennsylvania', 'November 13', 'A43', 'Broughton', 'UK', 'Felixstowe to Port of Kettering', 'EUR', '1,1 million', 'the Union of Transporters and', 'Peru', 'Saturday', 'Callao', 'at least 40,000', 'at least 200', 'Thursday', 'Lambayeque, Piura, Cajamarca', 'La Libertad', 'San Martin', 'Amazonas', 'Truck', 'At least one', '115', 'Arequipa', 'at least 30', 'Lima', 'Tacna', 'the Panamericana Norte Highway', 'Cajamarca', 'Chiclayo', 'Trujillo', 'Lima', 'up to', '60 thousand tons', 'Salaverry', 'La Libertad', 'Five', 'Peruvian', 'Calle Principal', 'Calle 15', 'Callao District', 'Lima', 'April 1', 'German', 'Viking Idun', 'Chemical Marketer', 'Terneuzen', 'Netherlands', '2 am', 'April 1', 'Antwerp', 'Belgium', 'Antwerp', 'Terneuzen', \"Chemical Marketer's\", 'first', 'October 29', 'two', 'the Bureau of Customs', 'the Port of Manila', 'EUR', '61,750', 'the Port of Manila', 'October 12', 'China', 'PHP 288,576', 'october 29', 'the Customs Modernization and Tariff Act', 'October 30', 'the Philippines Bureau of Customs', 'two', 'China', 'the Port of Manila', 'Liuzhiga International Trading', 'the Port of Manila', 'October 19', 'October 29', 'Saturday', 'Rodrigo Duterte', 'China', 'Thitu', 'the South China Sea', 'around 200', 'Chinese', 'Sandy Cay', 'Philippine', 'The Philippine Navy', '600', 'Chinese', 'the first quarter of the year', 'Tuesday', 'the Chinese Embassy', 'Manila', 'around 1,000', 'Duterte', 'China', 'Thitu Island', 'Philippines', 'China', 'Taiwan', 'Vietnam', 'Duterte', 'China', 'Philippines', 'Thitu Island', 'Duterte', 'China', 'China', 'Philippines', 'two', 'Chinese', 'the Pacific Coast Plaza', 'Tambo Service Road in Parañaque', 'Monday', 'Metro', 'E3', 'Manila', 'the Bureau of Customs', 'the Port Area', 'Manila', 'Friday night', 'third', 'today', 'Parañaque', 'the Pacific Coast Plaza', 'Tambo Service Road near Radial Road 1', 'Batangas International Port', 'PAGASA', 'Surigao del Sur', 'Bicol Region', 'Visayas', 'Mindanao', 'tomorrow', '27 October', 'Metro Manila', 'the next 24 hours', 'the next 24 hours', 'The United States', '6.2', 'today', '29 September', 'Davao Oriental Province', '76.1 kilometers', '10:02', 'The United States', '6.5', 'today', '31 October', 'Makilala', '10 kilometers', 'Eva', 'Kidapawan City', 'Davao City', 'second', '6.0', 'recent days', 'Calamba', 'Laguna Province', 'Friday', 'between 5.2 and 5.5', 'Metro Manila', 'The Metropolitan Manila Development Authority', 'the Southeast Asian', 'between 30 November and 11 December', 'Epifanio de los', 'Santos Avenue', 'Roxas Boulevard', 'Adriatico Street', 'Shaw Boulevard', 'Pablo Ocambo Street', 'Bonifacio Drive', 'Port Area', 'Manila', 'overnight', 'Dapitan', 'more than 130', 'Dapitan', 'Cebu City', 'two', 'Tuesday', 'several hours later', 'Tropical Storm Jenny', 'Central Luzon', 'Metro Manila', 'Wednesday', '28 August', 'tonight', 'tomorrow', 'Tropical Storm Nakri', 'Manila', 'approximately 200 kilometres', 'Philippines', 'two', 'Philippines', 'Luzon', 'PAGASA', '130 kilometers', 'Iba, Zambales', '715 kilometres', 'Basco', 'Batanes', 'habagat', 'Metro Manila', 'Zambales', 'Bataan', 'Cavite', 'Batangas', 'Palawan', 'Mindoro Provinces', 'Pier 1', 'the Port of Durban', 'between 19.15 to 20.40', 'November 6', 'Pier 1', 'the Port of Durban', '14:30 to', '22:30', 'January 29', '00:25', 'the next day', 'November 5', 'Pier 2, Port of Durban', '108', '203', '204', 'September 3', 'the Port of Durban', '4,850', '648', 'Pier 2,', 'Port of Durban', '4 days', '2.5 months', 'August 19', 'October 31', 'Port of Bremerhaven', 'January 2', 'December 16', 'the Port of Antwerp', 'about 10:35 PM', 'Sunday', 'the Ile-de-France', 'PLIF', 'Autouillet', 'Yvelines', 'Vicq', 'Boissy', 'Autouillet', 'Lieutel', 'about 17 acres', '30 acres', 'multiple months', '166-mile', 'Le Havre', 'this week', 'PLIF', 'May 2014', 'Le Havre', '2014', 'three weeks', 'Ile-de-France', 'Friday', 'two', 'the Singapore Strait', 'first', 'less than two hours later', 'first', 'three', 'six', 'second', 'the start of the year', '29', 'the Straits of Malacca', 'Singapore', 'SOMS', 'eight', '2018', '2015', '96', 'this year', 'Piraeus', 'Lavrio', 'Rafina', 'Malaysia', 'Jin Hwa', 'the Straits of Malacca', 'Singapore', 'Tuesday', 'February 05', 'Intelligence', 'Everstream Analytics', 'May 11', '10am', 'IMO 9300207', 'Dumai Port Anchorage', 'the Malacca Strait', 'Rupat Island', 'IMO 8984446', '11', '2', '11:10am', 'March 5', 'the Singapore Strait', 'Sandakan', 'Penang', 'the Singapore Police Coast Guard', 'July 2018', 'February 12', 'India', 'Central Board of Indirect Taxes', 'Customs', 'Data Management', 'February 15 through 17', 'Delhi', 'Chennai', 'Customs', 'India', 'February 15 to 17', 'the Port of Nhava Sheva', 'JNPT', 'January 9, 2019', 'Terminal', '08:30 through 18:30', 'January 9, 2019', 'QC Operations', 'Wharf', 'Rail Head/ICD Operations', 'NSICT & NSIGT Terminals', 'Thousands', 'Poland', 'Fridays', 'Warsaw', 'thousands', 'the Ministry of Energy', 'around 2:00 PM', 'Krakow', 'Szczecin', 'Lubin', 'Lodz', 'Gdansk', 'Torun', 'Bielsko-Bia', 'Katowice', 'Gdańsk Lech Wałęsa Airport', 'Port Lotniczy Gdańsk-Rębiechowo Airport', 'Thursday 25 April', 'Greenpeace', 'Gdansk Port', 'Tuesday', 'At least 18', 'Mozambique', 'Pomeranian Voivodeship', '23:00', 'Saturday 7 December', '75 kilometres per hour', 'Gdansk', 'Pomeranian Voivodeship', '21:00', 'Sunday 27 October', '75 kilometres per hour', 'Gdansk', 'Pomeranian Voivodeship', '14:00', 'Monday 14 October', '75 kilometres per hour', 'Gdansk', 'Monday', 'Turkish', 'pro-Kurdish', 'Istanbul', 'Peoples Democratic Party', 'HDP', 'Leyla G', 'November', 'Kurdistan Workers Party', 'PKK', 'Abdullah calan', 'Approximately 40', 'Avenue to', 'Taksim Square', 'last month', 'More than 250', 'Kurdish', '36', 'Turkey', 'Kurdish', 'recent weeks', 'Mersin', 'Saturday', 'Kurdish', 'Friday', 'February 15', '100', 'Turkey', 'February 7', '5', 'Guarulhos', 'Brazil', 'Santos', 'Brazil', 'February 7', 'the Presidente Dutra', 'Ayrton Senna', 'Rio de Janeiro', 'Durban', 'millions', 'almost R2-million', 'EUR 126,000', 'Johannesburg', 'August 9', 'South Klang', '11', 'At least 1', 'Port Klang', 'June 17', 'Al Muhra Sdn Berhad', 'Westport Container Terminal', '323,000', 'USD 77,250', 'EUR', '70,000', 'Mazaya', '1,452', '1,551', 'Only 74', 'Port Klang', 'Sunday', 'around 100', 'Langham Place', 'Mong Kok', 'Hong Kong', 'Mong Kok', '27', 'the New Town Plaza', 'Sha Tin', 'Maxim', 'Telford Plaza', 'Kowloon Bay', 'Metroplaza', 'Kwai Fong', 'Times Square', 'Causeway Bay', 'PopCorn', 'Tsueng Kwan O', 'Cityplaza', 'Tai Koo Shing', 'Harbour City', 'MTR', 'At least 31', 'five', 'Earlier in the afternoon', 'Tsing Yi', 'two', 'ten-inch', 'At least 30', 'three', 'Saturday', 'Tuen Mun', 'November 10', 'Hong Kong', 'Sunday', 'first', 'Kowloon', 'December 1', 'Sunday', 'October', 'early November', 'Hong Kong', 'late November', 'Hong Kong', 'past months', 'Sunday', 'the past two weeks', 'two', 'a week', 'Wan Chai', 'December 8', 'Saturday', 'Millwall', 'Everton', 'about 4:40 PM', 'Hawkstone Road', 'Millwall', 'Southwark', 'London', 'One', 'Everton', 'Millwall', 'Saturday', 'fourth', 'FA Cup', 'Millwall Football Club', 'Saturday', 'FC', 'Saturday', 'January 22', '50', 'Vizio', '6300', 'Vermont Avenue', 'South Los Angeles', 'At least 1', 'December 3', 'Sao Paulo Civil and Military Police', 'the Capivari Civil Municipal Guard', 'EUR', '11,790', 'USD 13,070', 'Santos', 'January 31', 'Italian', '2 metric tons', '500 million', '60', 'the Port of Genoa', 'Colombia', 'the week', 'Barcelona', 'Genoa', 'Italian', 'GPS', 'Barcelona', 'Spanish', 'Colombian', 'Spanish', 'Italy', '25 years', 'the Port of Genoa', 'Europe', 'March 18', 'the Port of Santos', 'March 18', 'Cartagena', 'Colombia', 'Algeciras', 'Spain', 'French', 'March 15', 'the Pont de Normandie', 'earlier this week', 'The Viaduc du Grand Canal', 'October 17', 'Singapore', 'Port Authority', 'Inter-Pacific Petroleum Pte Ltd', 'October 15', 'the Port of Singapore', 'June 27', 'December 11', 'MSC Branka', 'Mundra', 'Nhava Sheva', 'Port of Mundra', 'December 13', 'Port of Nhava Sheva’s', 'December 16', 'December 11', 'MSC Branka', 'Mundra', 'Nhava Sheva', 'Port of Mundra', 'December 13', 'Port of Nhava Sheva’s', 'December 16', 'February 11', 'the Port of New York', 'New Jersey', 'February 12', 'Maher', 'GCT Bayonne', 'New York', 'Red Hook', 'Maher Terminals', 'February 12', 'Port of Manila', 'Manila North', '20', 'Manila South', 'the Port of Durban', 'up to 48 hours', 'the last few days', 'today', 'the next day', 'Intelligence', 'Everstream Analytics', 'April 17', 'the Port of Osaka', 'Japan', '24-hour', 'One', 'May 1', 'the Port of Osaka', 'Intelligence', 'Everstream Analytics', 'April 17', 'the Port of Tokyo', 'Japan', '24-hour', 'One', 'May 1', 'the Port of Tokyo', 'January 25', 'the Port of Hong Kong', '24 hours', 'Intelligence', 'Everstream Analytics', 'Port Hedland', 'April 5 to April 10', 'Berth 2', 'LOA', '160', 'Port Hedland', 'approximately 520 million metric tonnes', '98%', '90%', 'Intelligence', 'Everstream Analytics', 'Port Hedland', 'February 21', '6am - February', '6pm', 'Berth 1', 'Berth 2', 'LOA', '145', 'Port Hedland', 'approximately 520 million metric tonnes', '98%', '90%', 'Intelligence', 'Everstream Analytics', 'Port Hedland', 'June 3 to June 8', 'Berth 2', 'Port Hedland', 'approximately 520 million metric tonnes', '98%', '90%', 'February 15', 'February 14', 'February 15', 'Alexandria', 'Dekhelia', 'Cairo', 'Alexandria', 'October 26', 'the Port of Alexandra', 'the day', 'December 20', 'the Port of Algeciras', 'Hutchison Ports', 'the Port of Balboa', 'October 8', 'the Port of Balboa', 'Panama', 'February 12', 'Port of Balboa', '24-hours', 'approximately five minutes', 'the Port of Barcelona', '600', 'the Port of Barcelona', 'Monday, March 18', 'the Colon Promenade', 'Drassanes, Via Laietana', 'Carrer', 'Placa Espanya', 'Av', 'del Para', 'the Transport Association of the Port of Barcelona', 'Sintraport', 'later this week', 'December 2', 'the Port of Batangas', 'Typhoon Kammuri', 'Tisoy', 'Philippines', 'December 3', 'the Port of Batangas', 'December 3', 'September 20', 'the Port of Busan', 'the morning of September 22 to the morning', 'September 23', 'August 23', 'the Port of Busan', 'the morning of September 13', 'the next day', 'morning', 'Busan', 'The Port of Charleston', 'Hurricane Dorian', 'September 18', 'the Port of Charleston', '1-2 days', 'Hurricane Dorian', 'February 4', 'Chittagong container Terminal (CCT', '3-days', 'August 29', 'the Port of Colombo', '8 to 12 hours', '12 to 25 hours', 'October 2', 'the Port of Dalian', '06:30', 'October 1', 'December 6', 'the Port of Dalian', '04:00 till 13:30', 'December 5', 'October 14', 'Port of Dalian', 'the evening', 'October 13', 'midnight', 'April 1', 'the Port of Durban', 'the day', 'April 1', '2', 'December 10', 'Port of Durban', '2', 'Coega', 'Port Elizabeth', 'December 10', 'Durban', 'Port Elizabeth', 'January 7', 'Port of Durban', 'the coming days', 'Port of Durban', 'Pier 1', '3:20pm', 'February 26', 'the Port of Durban', '3:20pm', 'February 26', '79', 'Port of Felixstowe', 'Berth', 'Port of Gdansk', '24-hours', 'Intelligence', 'Everstream Analytics', 'December 19', 'Italian', 'Liguria', 'the Port of Genoa', 'all day', 'December 20', 'La Spezia', 'Savona', 'between 08:00 and 21:00', 'December 20', 'April 10', 'the Port of Gioia Tauro', 'Ho Chi Minh City', 'December 2', 'Long Tau', 'daily', 'Long Tau', 'less than 10 meters', 'February 4', 'Port of Ho Chi Minh', 'Cat Lai Port', '24-hours', 'January 4', 'the Port of Hong Kong', 'about 12-hours', 'the next day', 'Port of Houston', 'early next week', 'March 22', 'Port of Houston', 'last week', '24-hours', 'the Port of Incheon', 'September 7', 'Typhoon Lingling', 'September 8', 'January 2', 'Jawaharlal', 'Nehru', 'India', 'the day on January 3 and January 9', 'August 23', 'Tropical Storm Bailu', 'the Port of Kaohsiung', 'the coming weekend', 'Taiwan', 'the early morning', 'August 24', 'China', 'October 21', 'Port of Kobe', 'the afternoon', 'October 22', 'the morning', 'October 23', 'Typhoon Neoguri', 'Japanese', 'Port of Lianyungang', 'April 20', '08:00 to 18:00', 'April 23', 'up to 1 day', '19', 'Norwegian', 'the Port of Los Angeles', 'August 31', 'the Port of Los Angeles', 'U.S.', 'Chinese', 'the Port of Los Angeles', 'last year', 'September 1', 'February 4', 'Port of Manila', '2', 'Manila North', '20', 'Manila South', 'April 2,', 'Port of Manila', '6', 'Manila North', '1', 'Manila', 'Manila', 'Manila North', '6', 'Manila South', 'October 30', 'Port of Manila', '0', 'Manila North', '0', 'Manila South', 'April 24', 'the Port of Manila', '5', 'Manila North', '3', 'Manila South', 'Manila', '3', 'Manila North', '4', 'Manila South', 'Manila', '3', 'Manila North', '4', 'Manila South', 'March 6', 'the Port of Manila', '1', 'Manila North', '20', 'Manila South', 'December 2', 'the Port of Manila', 'Typhoon Kammuri', 'Tisoy', 'Philippines', 'December 3', 'the Port of Manila', 'December 3', 'the Port of Manzanillo', 'September 18 and September 19', 'Hurricane Lorena', 'September 20', 'Port of Mongla', 'Cyclone Fani', 'Bangladesh', 'May 3', 'Odisha State', 'Chittagong', '48-hours', 'Intelligence', 'Everstream Analytics', 'the Port of Montreal', 'at least 24', 'October 21', 'the Port of Nagoya', 'Japan', 'the afternoon', 'October 22', 'the morning', 'October 23', 'Typhoon Neoguri', 'November 1', 'the Port of Ningbo', '1 –day', 'Xiazhi Men Channel', 'the next 3-days', 'December 20', 'the Port of Piraeus', 'December 10', 'Qingdao Port', 'the late evening', 'December 9', 'the morning', 'December 10', 'December 12', 'Qingdao Port', 'Saigon', 'around 1 to 2-days', 'the Port of San Antonio', 'the Port of San Antonio', 'the Port of Savannah', 'last week', '24-hours', 'September 20', 'the Port of Shanghai', 'the morning of September 21 to the evening', 'September 22', 'November 1', 'the Port of Shanghai', 'the next 3-days', 'October 2', 'Port of Taichung', 'Gantry Crane 9-2', 'September 23 to October 23', 'December 10', 'that Tianjin Port', 'the morning', 'December 10', 'Tianjin Port', 'January 16', 'the Port of Tianjin', '1.5 days', 'the next 3-days', 'October 2', 'the Port of Tokyo', '24-hours', 'October 7', 'the Port of Ulsan', 'Stolt Groenland', 'September 30', 'eighteen', 'two days', 'the Port of Valencia', 'Spanish', 'December 20', 'the Port of Valencia', 'February 4', 'the Port of Yokohama', '12 hours', 'February 4', 'January 30', 'the Port of Yokohama', 'January 28 to January 29', 'October 21', 'Port of Yokohama', 'October 22 - 23', 'Typhoon Neogure', 'the following days', '08:45', 'April 13', 'DP World Southampton', 'April 13', '14', 'April 26', 'the Port of Colombo', 'the coming weeks', 'November 4', 'the Maritime Union', 'Australia', 'the Port of Melbourne', 'November 6', '12:00 to 16:00', 'DP World', 'four hours', 'November 4', 'the Maritime Union', 'Australia', 'the Port of Brisbane', 'November 7', '11:00 to 15:00', 'the Old Terminal of DP World', 'Port Said', 'February 25', 'Tuesday', 'February 26', 'March 6', 'Port Said Port', \"Port's\", 'March 5', 'Italian', 'March 15', 'the Port of Genoa', 'last minute', 'April 23, 2019', 'Port Tianjin Xingang', 'Silicon Sphere', 'October 9', 'Karal Phata', 'Maharashtra', 'India', '08:00', 'October 9', '07:00 to 11:00 and 17:00 to 21:00', 'Jawaharlal Nehru Port Trust', 'Nhava Sheva', 'January 17', 'two', 'Sydney', 'Brisbane', 'January 17', 'Hutchison Ports at Port Botany', 'Sydney', 'the Port of Brisbane', 'five months', '30 minutes to 24 hours', 'the coming weeks', 'November 17, 2018', 'more than 500', 'Chile', 'Valparaiso', '50', 'Terminal Cerros de Valparaiso', 'TCVAL', 'November 30', 'Terminal Pacífico Sur (TPS)', 'second', 'Valparaiso', 'December 21, 2018', 'over 35 days', 'one', 'Chile', 'The first weeks', 'recent weeks', 'Valparaiso', 'Pacific', 'Monday, December 19', '20', 'two', 'One day', 'Valparaiso', 'Iquique', 'Antofagasta', 'Caldera', 'Ventanas', 'San Antonio', 'Valparaiso', 'Talcahuano', 'San Vicente', 'Puerto Montt', 'Valparaiso', 'some USD 25 billion', 'each year', 'the Chilean Maritime Port Organization', 'more than 50,000', 'Chile', 'Valparaiso', 'approximately 55%', 'Chile', 'the Federation of Fruit Producers of Chile', 'Valparaiso', '95%', '59,883 tons', 'between November 16 and December 17', '2017', 'only 3,006 tons', '2018', 'San Antonio', 'Valparaiso', 'the Port of San Antonio', 'more than 20,000', 'a normal day', 'San Antonio’s', 'Port Authority', 'about 100 to 150', 'an hour', 'Valparaiso', 'more than 300', 'just one hour', 'Outlook', 'December 19', 'December 22', 'Valparaiso', 'TPS', 'the Ministry of Labor', '760,000', 'USD 1,100', 'EUR', '250,000', 'EUR 320', 'over 400,000', 'EUR', '525', 'January 3', 'Valparaiso', 'two weeks ago', 'as many as 22', 'December', 'the same day', 'the Port of Valparaiso', '35 days', '2018', 'November-December', 'the Port of Valparaiso', 'second', 'Chile', 'the last 20 years', 'the Port of Valparaiso', 'the upcoming days', 'weeks', 'Valparaiso', 'November 14', 'November 14', 'between 07:00 and 09:00', 'The Port of Savannah', 'the Port of Brunswick', 'Hurricane Dorian', 'December 9', 'Nye Avenue', '21st Street', 'Irvington', 'New Jersey', 'November 8', 'the Port of San Antonio', '48-hour', 'next week', 'Powell St', 'Victoria', 'Powell St', 'Semlin Dr', 'Salsbury', 'Victoria Dr', 'Powell St', 'Triumph St', 'April 10', 'the Port of Barcelona', 'the period of', 'April 6-13', 'Operations', 'April 30', '09:00 to 11:00', 'Typhoon Hagibis', 'Kozushima', 'Shikinejima', 'Niijima', 'Tokyo', '150', 'Kanuma City', 'Tochigi Prefecture', '1,200', 'Asakawa Town', 'Fukushima Prefecture', 'about 1,200', 'Marumori Town', 'Miyagi Prefecture', 'October 14', '09.00', 'NTT Docomo', 'KDDI', 'Softbank', 'Shizuoka', 'Miyagi', 'Iwate', 'Kanagawa', 'Chiba', 'NTT', 'October 18', 'the Port of Balboa', 'January 30', 'the Durban Multipurpose Terminal', 'Waterside and Landside', 'Durban MPT', 'Mumbai', 'annual', 'JNPT', 'between 0800 Hours and 1700 Hours', 'May 1, 2019', 'the Quayside and Rail', 'Gate', 'August 21', '25', 'last month', 'Shun Sheng', '3', 'February 7', 'Singapore Strait', 'Senang Island', '4', '2', 'Singapore Strait', 'Hong Kong', 'Lumut', 'Malaysia', 'Singapore', 'around 13:00', 'NAMSE', 'Jan 7', 'Indonesian', 'Dec 28', '11', 'Sampit', 'Kalimantan', 'Jakarta', 'Dec 28', 'Surabaya Shipping Lines', 'Java', 'SUCCESS ENERGY XXXII', '17:25', 'April 24', 'Sungai Raya Shipyard', 'Karimunbesar', 'Riau Islands', 'Singapore Strait', 'two', 'seven-mile', 'the Houston Ship Channel', 'Monday, March 25', 'three-day', 'last week', 'Intercontinental Terminals Company', 'ITC', 'La Porte', 'TX', 'Tucker Bayou', 'ITC', 'Houston Ship Channel', '116', 'Friday', 'at least 31', 'at least 31', 'the Port of Houston', 'less than a', '34-foot', 'daylight hours', 'approximately one-hour', 'The U.S. Coast Guard', 'Coast Guard', 'The Houston Ship Channel', 'Royal Dutch Shell', 'LyondellBasell Industries', 'LYB', 'Shell', 'approximately 275,000 barrels', 'Shell', 'LYB', 'approximately 14 percent', 'August 23', 'China Hongqiao Group’s', 'up to 300,000', 'almost 5 percent', 'Typhoon Lekima', 'the Hong Kong Stock Exchange', 'China Hongqiao Group Limited', 'Chinese', 'last week', 'Catalan', 'last Friday', 'Barcelona', 'Between Monday, October 14', 'Sunday, October 20', 'US', '$3.4 million', 'Barcelona', 'Wednesday', '1,044', '57', 'nearly 7,900 feet', 'Nearly 2,100', 'Two', 'the Port of Barcelona', 'last week', 'several hundred', 'Catalan', 'Wednesday', 'Barcelona', 'Catalonia', 'the week', 'weekend', 'weekday', 'recent days', 'About 200', 'Catalan', 'National Police', 'Catalonia', 'Spanish', 'about 13 percent', 'Pedro Sanchez', 'Madrid', 'Spanish', 'Catalonia', 'November 10', 'the evening', 'May 3', 'South Access', 'Port of Manila', '23 January 2019', 'Juan Guaido', 'the National Assembly', 'Venezuela', 'thousands', 'National Guard', '21 January', 'Petare', 'Caracas Sucre', 'Forty-three', 'the National Guard', 'Nicolas Maduro', '43 Command', 'the National Guard', 'that same day', 'the last two years', 'Valencia', 'Carabobo', 'the Supreme Court', 'Ministry of Interior', 'UAV', 'Maduro', '6 August 2017', 'Maduro', '2019-25', '10 January', 'US', 'Canada', 'EU', 'Latin American', '23 January', 'Guaido', 'Venezuela', 'Russia', 'China', 'Turkey', 'Maduro', 'Russia', 'US', '21 January', 'United Socialist Party', 'Caracas', 'San Jose de Cotiza', 'Libertador', '23', 'Antimano', 'Autopista Caracas - La Guaira', 'Avenida Fuerzas Armadas', 'Avenida Panteon', 'El Valle', 'La Pastora', 'El Valle', 'Venezuela', 'Maduro', 'Caracas', 'Maduro', 'the Miraflores Presidential Palace', 'IHS Markit Foresight', '2019', 'Boris Johnson', 'Wednesday', 'more than a month', 'mid-October', 'the United Kingdom', 'the European Union', 'October 31', 'Johnson', 'Brexit', 'UK', 'EU', 'Brexit', 'UK', 'the coming months', 'Brexit', 'UK', 'Wednesday', 'Johnson', 'September', 'Queen s Speech', 'October 14', 'the United Kingdom', 'the European Union', 'October 31', 'September 12', 'half', 'Brexit', 'summer', 'Brexit', 'More than one million', 'Wednesday', 'Brexit', 'Protests', 'UK', 'London', 'Manchester', 'Glasgow', 'London', 'Wednesday', 'evening', 'thousands', 'College Green', 'Westminster', 'Parliament Square', 'Momentum', 'Labour Party', 'Jeremy Corbyn', 'Parliament', 'Tuesday, September 3', 'Johnson', 'Brexit', 'EU', 'Corbyn', 'Brexit', 'October 31', 'at least six-week', 'mid-September', 'Article 50', 'EU', 'Theresa May', '2017', 'UK', 'EU', 'Johnson', 'July 24', 'UK', 'EU', 'October 31', 'first', 'Brexit', 'March 29, 2019', 'a week', 'second', 'London', 'At least hundreds of thousands', 'more than one million', 'Park Lane', 'Parliament Square', 'EU', 'April 12', 'first', 'Westminster', 'Brexit', 'EU', 'UK', 'EU', 'European', 'October 31', 'Brexit', 'autumn', 'UK', 'Brexit', 'October 31', 'Brexit', 'EU', 'second', 'Brexit', 'pro-Brexit', 'March 2019', 'London', 'second', 'Brexit', 'Brexit', 'the coming months', 'Brexit', 'Brexit', 'the World Trade Organization', 'UK', 'Brexit', 'Northern Ireland', 'the Republic of Ireland', 'Northern Ireland', 'EU', 'Brexit', 'UK', 'EU', 'EU', 'UK', 'October 31', 'Brexit', 'the Pound Sterling', 'Brexit', 'October 31', 'Intelligence', 'Everstream Analytics', 'Qingdao Port', '1', '7', 'between April 15 and April 30', 'Qingdao', '70th', 'the Chinese Navy', 'April 23', 'March 25', 'Qingdao Yangpu Intelligent Technology Co., Ltd.', '600 yuan', 'EUR', '79', 'Queensland Health', '24-hour', 'Queensland', 'December 4', 'Brisbane, Rockhampton', 'Cairns', 'Townsville', 'Brisbane', 'over 150', 'the Queensland Health', 'Charlotte St', 'George St', 'William St', 'William St', 'Alice St.', 'Queensland Health', 'February 4', 'Quetta Customs Collectorate', '5.85 million', 'USD 41909.40', 'the Port of Karachi', '3', 'Quetta', 'Pakistani', 'Afghanistan', 'Pakistan', 'Surrey Quays', 'Crystal Palace / West Croydon', 'approximately 15:00', 'October 2', 'Genoa VTE', 'October 13 to November 3, 2019', 'March 27', 'TSSA', 'DB Cargo', 'DB Cargo', 'DB Cargo', '16', 'Trafford Park', 'Wakefield', 'DBC', 'Maritime Transport Limited', '1 April', 'Maritime', 'January', 'two', 'UK', 'Maritime Transport', 'DB Cargo', 'UK', '10-year', 'UK', 'DB Cargo', 'UK', 'Maritime Intermodal’s', 'Felixstowe and Southampton', 'April 23', 'the Port of Montreal', 'MGT', 'May 25', 'Montreal', 'February 22', 'EUR', '145,000', 'Houston', 'TX', '1,386', 'Settegast Rail Yard', 'December 31, 2018', 'Houston', 'Illinois', 'January 8', 'Bharat Bandh', 'India', 'Odisha', 'January 8', 'Bhubaneshwar', 'Cuttack', 'Balasore', 'Jaleswar', 'Bhadrak', 'Sambalpur', 'Berhampur', 'Paradip', 'over a dozen', 'IOCL', 'Rangiagarh', 'the Port of Paratip', 'Odisha', 'November 11', 'Pier 2, Port of Durban', '17.25', '17.30', 'March 11', 'the Greater Sao Paulo', 'Santos', 'the Port of Santos', 'Brazil', 'over 13 hours', 'March 11', '10+ day', 'the Port of Santos', 'Malta', 'the weekend', '14', 'Vittoriosa', 'Malta', '80 miles per hour', 'nearly two inches', 'more than half', 'this month', 'two', 'Joseph Muscat', 'October 1982', 'the European Union', 'Muscat', 'Wednesday and Saturday', 'last weekend', 'two', 'Iranian', 'around 5:00 AM', '5:30 AM', '60 miles', 'Jeddah', 'Saudi Arabia', 'Red Sea', 'Friday', 'Sinopa', 'Iranian', 'Sabiti', 'Iranian', 'the National Iranian Tanker Company', 'Sabiti', 'Sabiti', 'the Red Sea', 'Brent', 'two percent', 'Saudi Arabia', 'the United States', 'Iran', 'Friday', 'Mozambique', 'Filipe Nyusi', 'Jose Manteigas', 'Nyusi', 'Lebanese', 'Nyusi', 'U.S', '$2 billion', 'Abu Dhabi', 'Prinivest', 'New York', 'Wednesday', 'Jean Boustani', 'Nyusi', 'U.S.', '200 million', '2014', 'Nyusi', 'the coming days', 'weeks', 'August 2019', 'Renamo', 'Mozambique', 'the coming days', 'weeks', 'March 5', 'the Port of Colombo', '4', 'the next 12 to 14 weeks', '24-hours', 'the the Official Press Release', 'the General Directorate of Traffic and Transport', 'DGTT', 'Colombia', 'the Holy Week', 'April 12 - April 21', 'DGTT', 'more than 3.4 tons', 'the year', 'Exit Operations', 'Return Operations', 'Barranquilla - Cartagena', 'Bogotá - Choachi', 'Bogotá - Villavicencio - Acacías', 'Bucaramanga', 'Ibagué - Honda', 'Medellín - Santa Fe De Antioquia', 'February 19', 'the Dutch Rijksrecherche', 'Brazilian', '1,500 kilograms', 'the Port of Rotterdam', 'Brazil', 'Rotterdam', 'Antwerp', 'trans-Atlantic', 'Brazil', 'Europe', '6.1', 'Taiwan', 'about 15 km (9 miles', 'Hualien', 'Hualien', 'Taipei', 'Xinyi', 'Taipei', 'October 1', 'St. Petersburg', 'the evening', 'October 1', 'Germany', 'the Czech Republic', 'St. Petersburg', 'August 20', \"Roane County Sheriff's\", 'I-40', 'Lenoir City', 'TN', 'August 20', 'State Freight Management', 'Dearborn', 'Roane County Jail', 'Kingston', 'March 26, 2019', '8.30 p.m.', 'Manila', 'Marshall Islands', 'the Batangas Bay', 'Batangas', 'Philippines', 'Tuesday, March 26', '20:30 SGT 2019', \"Hong Kong's\", 'FMG Northern', 'Wednesday January 30, 2019', 'Tianjin', 'China', 'Singapore', 'Maersk Capri', 'Wednesday February 6, 2018', 'Belawan', 'Singapore', 'the morning', 'October 3', 'Victoria Highway', 'the Port of Bremerhaven', 'April 2', 'Royal Dutch Shell Plc', '275,000 barrel', 'Deer Park', 'Texas', 'April 1', 'the Houston Ship Channel', 'Shell', 'last week', 'March 22', 'Mitsui & Co’s Intercontinental Terminals Deer Park', 'Reuters', 'Shell', 'Wednesday, April 3', 'Russian', 'the Kirovsky District', 'Saint Petersburg', 'Neva Bay', 'Saint Petersburg', 'Saturday', 'morning', '181 cm', 'today', '20', 'Neva', 'Russian', 'Saint Petersburg', 'the Neva River', 'Russian', 'Thursday 22 August', 'Nevsky District', 'Saint Petersburg', 'Skladskaya Ulitsa', 'Russian', 'Saint Petersburg', 'approximately 01:00', 'Nevsky Prospect', 'Two', 'the VietSun Integrity', 'the Long Tau River', 'February 2020', '10', 'Cat Lai Port', '10', 'October 2019', 'Cat Lai Container Terminal', 'Ho Chi Minh City', 'Vietnam', 'Long Tau River', 'October 19', 'VietSun Integrity', '285', '17', 'around 01.30', 'October 19', 'two hours', 'Marine', 'Ho Chi Minh City Port', 'Cat Lai', 'Soai Rạp', '150 tons', 'up to 3', 'October 30', 'up to 100 days', '3 months', '20', 'October 28', '63', 'about 42m3', 'Cat Lai', 'around 1.5 to 2 days', '30 percent', '9 meters', '9 meters', 'Cai Mep International Container Terminal', 'Cat Lai Port', 'the year', 'The Vietnam Maritime Administration', 'Ho Chi Minh City', 'Vung Tau', 'Dong Nai', 'Lai', \"Ho Chi Minh City's\", 'Ho Chi Minh City', 'Cat Lai', 'Cai Mep - Thi Vai Port', 'the Long Tau River', 'March 25', 'the U.S. Coast Guard', 'the San Jacinto River', 'the Houston Ship Channel', 'two', 'three hours', 'March 25', '12:00 PM', 'Coast Guard', 'daylight hours', 'About 60,000 gallons', 'March 24', 'February 14', 'San Esteban', 'the San Pablo Tepetzingo-San Antonio Cañada', 'hundreds', 'Tehuacan', 'several hours', 'Sandbridge', 'Hurricane Dorian', '23456', 'Zone A', 'Coastal Virginia', 'December 4', 'Sao Paulo Civil', '2', '27 tons', 'Rua Marques de Herval', 'the Port of Santos', 'December 3', 'May 2', 'Sao Paulo Civil', '1 ton', 'Joao Pessoa Street', 'Avenida Senador Feijo', 'Valongo', 'Santos', 'Brazil', 'the morning', 'May 2', 'January 21', 'Sao Paulo Civil', '70 tons', 'Macuco', 'Santos', 'November 24', 'Sao Paulo Highway', 'EUR', '154,360', 'USD 171,110', 'the morning of', 'November 24', '84th', 'the Santos Dumont Highway', 'Campinas', 'April 10', 'Sao Paulo Military', '2', 'Sao Vicente', 'SP', 'April 10', 'Avenida Penedo', '8 PM', 'April 9', 'Rua Ataliba Leonel', 'Sao Vicente', 'Santos', 'Brazil', 'Iranian', 'Jeddah', 'The National Petroleum Corporation', 'the Red Sea', 'approximately 60 miles', 'Georgia Power', 'Savannah', 'Hurricane Dorian', 'Gunpowder Dr', 'Stonebridge Ln', 'Two', 'Islands High School', 'Coastal Middle School', 'Marshpoint Elementary School', 'May Howard Elementary School', 'Chatham Area Transit', 'CAT', 'Amtrak', 'Hurricane Dorian', 'CAT', 'CAT', 'Saturday', 'Amtrak Palmetto 89', 'Richmond', 'VA', 'Savannah', 'GA', 'Saturday', 'the Palmetto 90', 'Savannah', 'Richmond Hill', 'Thunderbolt', 'Hurricane Dorian', 'DeLoach', 'Savannah', 'Intelligence', 'Everstream Analytics', 'March 16', 'March 16', 'Jawaharlal Nehru Port', 'April 2', 'October 28', 'the Financial Crimes Prosecution Body', 'nearly 8,000', 'the Port of Piraeus', 'September 20', 'China', 'Nike', 'Adidas', '1 million', 'SDOE', 'second', 'Batangas Container Terminal', 'Santa Clara', 'Batangas City', 'April 29, 2019', '250-meter', 'first', '600 meters', 'annually', 'first', '300,000', 'a year', 'Egypt', 'Turkey', 'Mersin', 'Turkey', 'Turkish-Syrian', 'Cordoba', 'Batabu', 'Syrian', 'Tartous', 'Lebanon', 'Beirut', 'Damascus', 'Wednesday', 'Two', 'Lebanon', 'Zahrani', 'Gaza', 'Egypt', 'Wednesday', 'Egyptian', 'Israel', 'Jerusalem', 'first', 'several years', 'the Golan Heights', 'Galilee', 'Route 60', 'Jerusalem', 'the Etzion Bloc', 'Ovda Airport', 'VDA', 'Israel', 'Wednesday', 'evening', 'this week', 'second', 'Levant', 'this month', 'late winter', 'early spring', 'Thursday', 'Iraq', 'Iran', 'the Arabian Peninsula', 'three', 'Kuwaiti', 'Thursday', 'Monday', 'the Philippine National Police (PNP', 'the National Capital Region', 'NCR', 'Regions I', '30th', 'Southeast Asian', 'between Saturday, November 30', 'Wednesday, December 11', 'December 14', 'PNP', 'At least 27,000', 'the SEA Games', '17,700', 'Metro', 'Manila', '10,000', 'dozens', 'Luzon Island', 'four', 'Metro', 'Manila', 'Clark', 'Subic', 'Islamist', 'Philippines', 'Luzon', 'Malaysia', '2017', 'Philippine', 'Abu Sayyaf', 'Philippines', 'Monday', 'the Philippine National Police (PNP', 'All Saints Day', 'All Souls Day', 'Friday, November 1 and Saturday, November 2', 'More than 35,000', 'PNP', 'Wednesday, October 30', 'Sunday, November 3', 'Tuesday, November 5', 'The Manila International Airport Authority', 'MIAA', 'at least two hours', 'All Souls Day', 'Christian', 'around 15 million', 'Filipinos', 'over 4,600', 'PNP', 'Christian', 'Islamist', 'Islamic', 'Islamic', 'Abu Bakr al-Baghdadi', 'French', 'March 8', 'Le Havre', 'Bonchamp', 'France', 'first', 'Intelligence', 'Everstream Analytics', 'August 16', 'Aomi', 'the Port of Tokyo', 'August 16', 'more than 8 hours', 'the Aomi Terminal', 'Ohio', 'Shinagawa', 'the Port of Tokyo', 'the Port of Yokohama', 'February 26', 'last weekend’s', 'the Port of Savannah', '2-4 days', '14', 'the week', 'February 23', 'the Port of London', 'DP World London Gateway', 'late February 22', 'the weekend', 'February 23', 'the Port of Southampton', 'late February 22', 'the weekend', 'Alabama', 'Mississippi', 'Tennessee', 'Georgia', 'Louisiana', 'Kentucky', 'Alabama', 'Mississippi', 'Parish', 'Louisiana', 'Kentucky', 'Tennessee', 'At least three', 'Tennessee', 'one', 'Columbus', 'MS', 'Saturday, February 23', 'hundreds', 'one', '11', 'Alabama', 'Cherokee', 'Colbert, Cullman, Dekalb, Etowah', 'Fayette,', 'Franklin', 'Jackson', 'Lamar, Lauderdale', 'Lawrence, Limestone', 'Madison', 'Marion', 'Marshall', 'Morgan, Walker', 'Winston', 'Mississippi', 'Calhoun', 'Carroll', 'Chickasaw', 'Clarke', 'Clay', 'Grenada', 'Humphreys', 'Itawamba', 'Lafayette', 'Lee', 'Lincoln', 'Lowndes', 'Madison', 'Prentiss', 'Quitman', 'Rankin', 'Sharkey', 'Simpson', 'Smith', 'Sunflower', 'Tishomingo', 'Tunica', 'Warren', 'Washington', 'Webster', 'Yalobusha', 'Yazoo', 'Tuscumbia', 'Cedar Bluff', 'AL', 'Magoffin', 'Martin', 'Kentucky', 'Tennessee', 'Tennessee', 'Counce', 'Hamburg', 'Columbia', 'Tennessee', 'Kentucky', 'Alabama', 'Cedar Bluff', 'Leesburg', 'I-24', 'Nashville', 'Friday, November 1', 'Andrew Cuomo', 'SOE', '11', 'Upstate New York', 'Thursday', 'night', 'At least one', 'Herkimer County', 'Lake Erie', 'Buffalo', 'seven-foot', 'just several hours', 'Cayuga', 'Chautauqua', 'Hamilton', 'Herkimer', 'Montgomery', 'Oneida', 'Saratoga', 'Warren', 'the State Emergency Operations Center', 'at least 200', 'the state National Guard', '60 miles per hour', 'at least 241,000', 'At least 60', 'days', 'weeks', 'Monday night', 'Flood Warning', 'Warren County', 'Wednesday, November 6', '10:00 AM EST', 'December 10', 'Colombo Port', 'Colombo Port', 'November 1', 'the Port of Montreal', 'November 1', 'Canadian National', 'Q149', 'November 2', 'the Port of Montreal', 'Polish', 'Pomeranian Voivodeship', '22:00', 'Monday 30 December', '75 kilometres per hour', 'Gdansk', 'Malta', '23:59', 'Monday 23 December', 'up to 75 kilometres per hour', 'Valletta', 'Polish', 'Pomeranian Voivodeship', '18:00', 'Wednesday 18 December', '75 kilometres per hour', 'Gdansk', 'Pier 2', 'the Port of Durban', '19:20', 'January 28', 'DP World Southampton Terminal', '02.00', 'December 9', '23.59', 'the previous day', 'Dammam Port', '21:45', 'March 24', 'March 10', 'the Port of London', 'DP World London Gateway', 'March 10', 'the early morning of March 11', 'March 11', 'the Port of Rotterdam', '16:00', '07:00', 'March 12', '16:00 on March 13', 'March 5', 'the Port of Rotterdam', 'the Port of Durban', 'March 26', 'the day', 'January 4', 'Port of Ambarli', 'February 4', 'Pier 2, Port of Durban', '18:30', 'February 3', '22:00', 'February 3', 'February 3', '21:00', 'the same day', 'March 11', 'the Port of Felixstowe', 'March 12', '16:00', 'March 13', 'April 23', 'SFA Semicon Philippines Corporation', 'Clark Freeport', 'Pampanga', '6.1', 'April 22', 'around 5:11 PM', 'SFA Semicon Philippines Corporation', 'Semicon Philippines Corporation', 'November 18', 'Shanghai', 'ten', 'around 800 tons', '6 million', 'USD 853,266', 'EUR', '771,259', 'the Port of Wai', 'Yangshan', 'the Port of Wai', 'Shanghai', 'the Shanghai Entry-Exit Inspection & Quarantine Bureau', 'Yangshan', 'China', 'August 31', 'China', 'the Lingang Special Area', 'FTZ', 'U.S.-China', 'zero', 'Shanghai', 'zero', 'the Red Sea Port Authority', 'Sharm al-Sheikh', 'the Alexandria Port Authority', 'Alexandria', 'Dekheila', 'March 30', 'Alexandria', 'Dekheila', 'Sharm al-Sheik', 'between 22 and 28', 'between 3 and 4 meters', 'April 30 to May 6', 'the Tokyo Aomi', 'Shinagawa', 'week public holiday', 'two', 'the morning of January 6, 2019', 'Maersk Gateshead', 'Hong Kong', 'the Kwai Tsing Container Terminal', 'the afternoon of January 5', 'Carlung', 'August 22', 'Chatham', 'NJ', 'Shipco Transport', 'USD 5,000-35,000', 'EUR', 'Shipco', 'the Yantian Express', 'January 14', 'the Elbe River', '380 meters', 'the Port of Hamburg', 'September 3', 'German', 'the Port of Hamburg', 'Germany', 'September 16', 'September 3', 'September 28', 'T2', '2', 'December 18', 'Sindipetro', 'Alemoa', 'Santos', 'the morning of', 'December 18', 'October 15', 'Singapore', 'China', 'October 16', 'Singapore', 'Chongqing', 'Singapore', 'China', '2009', 'November 4', 'Port Authority of Singapore', 'eleven', 'Northern Tuas', 'eleven', 'six', 'another five', 'November 8', 'Singapore', 'Port Authority', 'Singapore', 'October 16', 'Port Authority of Singapore', 'Inter-Pacific Petroleum', 'Inter-Pacific’s', 'Inter-Pacific', 'the Port of Singapore', 'Inter-Pacific Petroleum', 'the East Coast Parkway', 'Fort Road', 'Singaporean', 'the East Coast Parkway', 'the East Coast Parkway', 'Singaporean', 'the East Coast Parkway', 'Bedok', 'Siglap Road', 'Singaporean', 'the East Coast Parkway', 'Tampines', 'the Pan Island Expressway', 'the Marina Coastal Expressway', 'Central Boulevard', 'the Marina Coastal Expressway', 'Straits Boulevard', 'Singaporean', 'the Ayer Rajah Expressway', 'West Coast Road', 'the East Coast Parkway', 'Tanah Merah Coast Road', 'Singaporean', 'the East Coast Parkway', 'the Tanjong Katong Flyover', 'Singaporean', 'the East Coast Parkway', 'Still Road South', 'the Ayer Rajah Expressway', 'Jurong Pier Road', 'the East Coast Parkway', 'the East Coast Parkway', 'Still Road South', 'the Marina Coastal Expressway', 'Marina Coastal Drive', 'the East Coast Parkway', 'Tampines', 'the Pan Island Expressway', 'one-hour', '12:00-13:00', 'Friday', '15 March', 'a ‘Global Climate Strike For Future', 'the day', 'The Met Service', 'Singapore', 'Singapore', 'Thursday', 'The Public Utilities Board', 'Singapore', 'today', '2 February', 'Upper East Coast Road', 'Bedok', 'Singapore', 'between 01:00 and 02:15', '1 April', 'the East Coast Parkway', 'Fort Road', 'the East Coast Parkway', 'Fort Road', 'April 23', 'Sinopec', 'first', 'U.S.', 'this week', 'Sinopec', 'Unipec', 'the United States', 'September', 'U.S.-China', 'Maran Artemis', 'about 2 million barrels', 'U.S.', 'Midland', 'China', 'Qingdao', '2 million barrels', 'Midland', 'Zhanjiang', 'China', 'early May', 'U.S.', 'April 22', 'six-month', 'May 1', 'American', 'Iran', 'China', 'October 9', 'at least 50', 'Serra', 'Santos', 'Sindicato', 'Trabalhadores', 'Movimentação de Mercadorias', 'Arrumadores', 'Sintrammar', 'Alemoa', 'October 9', 'Serra', 'Santos', 'March 26', 'six', '2,970', 'PlayStation 4 Slim', 'the Port of Felixstowe to Jeddah', 'Saudi Arabia', 'September 2016', 'an estimated GBP 769,230', 'EUR', 'USD 1 million', 'a month', 'Sony', 'Saudi Arabia', 'September 2016', 'Basildon', 'Wellingborough', 'August 16', 'September 5', 'the Manzanillo International Terminal', 'MIT', 'Panama', '65 percent', '50 percent', 'MIT', 'Panama', 'Central America', 'Caribbean', 'the Colón Free Trade Zone', 'CFZ', 'Italian', 'the morning', 'April 27', 'MSC Samantha', 'the Port of Gioia Tauro', 'Italy', 'Turkish', 'pro-Kurdish', 'Peoples Democratic Party', 'HDP', 'Mersin', 'Saturday, February 9', 'Mersin Yenisehir', 'n Blv', 'HDP', 'more than 250', 'Kurdish', '36', 'Turkey', 'Kurdistan Workers Party', 'PKK', 'Abdullah calan', '1:00 PM', 'Turkey', 'the afternoon', '2018', 'the Vulcaan Port', 'Schiedam', '1.30 p.m.', 'tonight', 'September 27', 'German', 'Tollerort', 'the Port of Hamburg', 'Germany', 'the morning of September 27', 'the day', 'several hours', 'March 19, 2019', 'the Maritime Customs Office of Callao', 'around 1,000', 'China', 'EUR 40,000', 'Spanish', 'Pedro Sanchez', 'Sunday, April 28', 'Catalonia', 'Madrid', 'congress', 'Spain', 'Catalan', 'Catalonia', 'Spain', 'the Vox party', 'Friday, February 15', 'Pedro Sanchez', 'April 28', 'Sanchez', 'less than a year', 'Wednesday', '2019', 'congress', 'Sanchez', 'Socialist Party', 'PSOE', 'Popular Party', 'Ciudadanos', 'Catalonia', 'Catalan', 'Catalan', '2017', 'Sanchez', 'Catalonian', 'Madrid', 'Sunday, February 10', 'about 45,000', 'Plaza de Colon', 'PP', 'Ciudadanos', 'Vox', 'Sanchez', 'Catalan', 'Wednesday', 'dozen', 'Catalan', 'the Supreme Court', 'Madrid', 'Tuesday', 'last about three months', 'some 500', 'Mariano Rajoy', 'Roger Torrent', 'Barcelona', 'Ada Colau', 'Catalan', 'Thousands', 'Barcelona', 'Wednesday', 'about 6,000', 'Pla a de Catalunya', 'Catalonia', 'Saturday, February 16', 'at least thousands', 'weekend', 'Catalonian', 'years', 'as previous decades', 'Basque', 'Catalonia', 'more than 100,000', 'Catalonia', 'October 2017', 'Madrid', '2017', 'Spain', 'three', 'less than four years', 'congress', 'second', '1975', 'Francisco Franco', 'Sanchez', 'June 2018', 'Rajoy', '2016', 'Spain', '2015', 'first', 'Spanish', 'Rajoy', '2016', 'PSOE', 'third', 'Catalonia', 'Spain', 'last weekend', 'Catalonia', 'Madrid', 'last Sunday', 'PP', 'Vox', 'PP', 'Vox', 'Catalan', 'Vox', 'Andalusia', 'December', 'Vox', 'PP', 'Spain', 'Vox', 'Europe', 'Vox', 'Catalan', 'Vox', 'Vox', 'April', 'Catalan', 'Catalan', 'Madrid', 'Catalonia', 'jihadist', 'Spain', 'Europe', 'French', 'November 8', 'TER', 'France', 'about twenty', '6', '24 - Mâcon - Lyon', '32', '35 - Ambérieu - Lyon', '64', 'Solidarity', 'Hong Kong Planned', 'Multiple Countries', '9/28', 'Solidarity', 'Hong Kong', 'Saturday, September 28 and Sunday, September 29', 'North America Region', 'The United States', 'Los Angeles', 'Barnes Park', '9/29 2:00 PM', 'San Diego', 'Balboa Park ', '9/29 1:00 PM', 'San Francisco', '9/29 2:00 PM', 'Chicago', '9/29 2:00 PM', 'Boston', '9/29 11:00 AM', 'New York City', 'Washington Square Park', '9/28 1:00 PM', '9/29 11:30 AM', 'Austin', 'Texas', 'Capitol', '9/29 3:00 PM', 'Seattle (University of Washington - Rainier Vista', '9/28 11:00 AM', 'Washington DC', 'Washington', '2:30 PM', 'Canada', 'Calgary', 'Olympic Plaza ', '9/29 1:30 PM', 'Edmonton', '9/29 1:30 PM', 'Halifax (Public Gardens', 'Montreal', 'Cabot Square', '9/29 2:00 PM', 'Ottawa', 'Bank St and', 'Sparks St', '9/29 2:00 PM', 'St John s', 'National War Memorial', '9/28 1:00 PM', 'Toronto', 'Roundhouse Park', '9/29 2:00 PM', 'Vancouver', 'Elizabeth Theatre Plaza', '9/29 1:00 PM', 'Victoria', 'British Columbia Parliament Buildings', '9/29 10:00 AM', 'Winnipeg', 'The Forks Skateboard Park', '9/29 2:00 PM', 'Asia/Pacific Region', 'Australia', '2:30 PM', 'Brisbane', '9/29 2:00 PM', 'Canberra', 'Darwin', 'Smith Street Mall', '9/29 11:00 AM', 'Melbourne', 'Victoria', '9/29 4:00 PM', 'Sydney', 'New South Wales', '9/29 1:30 PM', 'New Zealand', 'Auckland (Aotea Square ', '3:00 PM', 'Japan', 'Osaka', 'Osaka-jo Hall', '9/29 1:00 PM', 'Sapporo', 'Nakajima Park', '9/29 12:30 PM', 'Tokyo', 'Chidorigafuchi Park', '9/29 3:30 PM', 'Malaysia', 'Kuala Lumpur', 'Selangor Chinese Assembly Hall', 'Taiwan', 'Kaohsiung', 'Shennong Road', '9/29 5:30 PM', 'Taichung', 'Taichung', '9/28 4:00 PM', 'Tainan', 'Tainan Art Museum', '9/29 3:00 PM', 'Taipei', 'Legislative Yuan', 'Jinan Road', 'China', 'Hong Kong', '9/29 2:30 PM', 'Europe Region', 'Belgium', 'Brussels', '9/28 2:00 PM', 'Denmark:', '9/29 12:00 PM', 'France', 'Paris', 'La Fontain Saint-Michel', '9/28 3:00 PM', 'Germany', 'Berlin', 'Berlin Alexanderplatz', '2:30 PM', 'Cologne', 'Bahnhofsvorplatz', '9/28 2:30 PM', 'Frankfurt', '9/28 2:00 PM', 'Munich', 'Marienplatz', '9/28 2:00 PM', 'Estonia', 'Kesklinn', '9/29 2:00 PM', 'Italy', '9/28 4:00 PM', 'Ireland', 'Dublin', '9/28 2:00 PM', 'Kazakhstan', 'Zhibek Zholy', 'Arbat', '9/29 1:00 PM', 'Nur-Sultan', 'Baiterek Tower', '9/29 1:00 PM', 'Netherlands', 'Amsterdam', 'Dam Square', '9/28 3:00 PM', 'Norway', '9/29 1:30 PM', 'Poland', 'Warsaw', 'Chinese', '9/29 1:00 PM', 'Spain', 'Barcelona', 'Parque de La Ciudadela', '9/29 2:00 PM', 'Sweden', 'Stockholm', '3:00 PM', 'United Kingdom:', 'London', 'Chinese Embassy', 'Marylebone', '9/29 1:00 PM', 'Edinburgh', '9/29 3:00 PM', 'Manchester', 'Manchester Central Convention Complex', '9/29 12:00 PM', 'June', 'China', 'Hong Kong', 'Australia', 'New Zealand', 'Taiwan', 'Canada', 'the Congress of South African Trade Unions', 'Wednesday', 'Eskom', 'SABC', 'Johannesburg', 'Nelson Mandela Bay', 'Durban', 'South Africa', 'an estimated 1.8 million', 'John Ross Highway', 'Richards Bay', 'Meerensee', 'Empangeni', 'Two', 'KwaZulu-Natal Province', 'At least three', 'Durban', 'KwaMashu', 'Inanda', 'Ntuzuma', 'Durban', 'KwaZulu-Natal Province', 'Tuesday', 'morning', 'Durban', 'N9', 'twelve', 'May Day', '1 May', '09:00', 'Athlone Stadium', 'Durban', 'Sugar Ray Xulu Stadium', 'Katlehong', 'Huntersfield Stadium', 'Kimberley', 'AR Abass Stadium', 'Victoria Grounds', 'Rugby Stadium', 'Mthatha', 'WSU Stadium', 'Orkney', 'James Motlatsi Stadium', 'Port Elizabeth', 'Isaac Wolfson Stadium', 'Tzaneen', 'Lenyenye Stadium', 'SAFTU', 'Durban', 'City Hall', 'Polokwane', 'Peter Mokaba Stadium', 'Port Elizabeth', 'Mdantsane Stadium', 'Tuesday 5 February', 'Durban', 'the Durban University of Technology', 'Steve Biko Campus', 'today', '12 November', 'Durban', 'Monday 25 March', 'Kenville', 'Durban', 'Inanda Road', 'At least one', 'two', 'Yeompo Quay', 'Ulsan', 'nine', 'a ‘Peace & Green’', 'Tuesday', '9 April', 'Around 1,100', '7 nights and 8 days', '16 April', 'Seoul', 'Yeosu', 'Shanghai', 'China', 'Nagasaki', 'Japan', 'Jeju Island', 'Busan', '6,000 ton', 'Russian', 'the Gwangan Bridge', 'Busan', 'Thursday', 'evening', 'More than 170,000', 'South Korea', 'Typhoon Lingling', 'Jeju', 'Jeollanam', 'Incheon, Gwangju', 'Chungcheongnam', '99 percent', 'March 26', 'South Korean', 'Busan', 'two', 'North Korean', 'March 7', '12,325 tons', 'January 2', '1,590 tons', 'this year', 'Three', 'Chinese', 'Vietnamese', 'Customs', 'U.S.', 'North Korean', 'South Korean', 'The United Nations', 'North Korean', 'Russia', 'the Port of Kholmsk', 'Spain', 'several days', 'the Valencian Community, Murcia', 'the Balearic Islands', 'Castile-La Mancha', 'Andalusia', 'over 1,100', 'At least 3,500', 'At least seven', 'Redovan', 'Almeria', 'Caudete', 'Orihuela', 'Granada Province', 'two', 'Over 4,000', 'around 2,000', 'Santomera', '200', 'Heredades', 'Segura River', 'Almer', 'Valencia', 'Alicante', 'Murcia', 'Castile-La Mancha', 'Orihuela', 'five feet', 'four days', 'The Region of Murcia International Airport', 'RMU', 'Barcelona-El Prat Airport', 'BCN', 'Palma de Mallorca Airport', 'PMI', 'Almeria Airport', 'the Port de Sagunt', 'Alicante', 'Madrid', 'Barcelona', 'Murcia', 'More than 74', 'South Western Railway', 'London', 'Friday, September 20', 'Spain', 'Madrid', 'Calle Gran Via', 'Plaza del Callao', 'the same day', 'Global Climate Strike', 'Friday', 'Spain', 'Madrid', 'Barcelona', 'later in the day', 'Madrid', 'Atocha', 'Paseo del Prado', 'Puerta', 'del Sol', 'Barcelona', 'Jardines de Salvador Espriu', 'the same day', 'Global Climate Strike', 'Friday', 'thousands', 'Spain', 'Fridays', 'March 15', 'Madrid', 'Puerta', 'del Sol', 'the Congress of Deputies', 'Barcelona', 'Pla a Universitat', 'Valencia', 'Sevilla', 'Bilbao', 'La Coruna', 'Barcelona Metro', '8', '29 April', 'metro', 'Metro', 'four-hour', 'the morning', 'afternoon', 'evening', 'Barcelona', '40 percent', 'the rush hours', '06:30 to 09:30 and 16:00 to 20:00', '20 percent', 'the hours', 'Algeciras', 'the day', '26 March', 'the end of the day', 'today', 'the UN Climate Summit', 'New York', '23 September', 'the IPCC Oceans and Cryosphere Report', '25 September', 'Barcelona', 'Alicante', 'Girona', 'Madrid', 'Malaga', 'second', '27 September', 'the Earth Strike', 'Girona', 'Wednesday morning', 'Barcelona', 'Catalonia', 'Barcelona', 'the coming days', 'Barcelona', 'Friday', \"Sant Sadurní d'Anoia\", 'Tàrrega', 'C-65', 'Cassà de la Selva', 'C-31', 'Torroella de Montgrí', 'Palafrugell', 'International Women’s Day', '8 March', 'first', 'Barcelona', '12:00', 'two', 'Jardinets de Gràcia', 'Plaça Universitat', 'Gran Via de les', 'Carrer Rocafort', '18:30', 'the Barcelona Metro', 'Monday', '06:00', 'the day', 'four', 'Metro', '10', '20', '24 May', 'Platja', 'Barcelona', 'today', '25 August', 'Civil Guard', 'approximately 40 meters', 'Barcelona', 'Canfranc', 'Canfranc', 'Jaca', '29 April', 'Barcelona', 'four hours', 'Spain', '24-hour', '17 April', 'At least 46', 'five percent', '19', 'AVE', '27', 'AVE', 'Madrid', 'Barcelona', 'Seville', 'Malaga', 'Valencia', 'Spain', '23:59', 'Sunday 3 February', '75 kilometres per hour', 'Barcelona', 'Girona', 'Barcelona', 'Thursday 9 May', 'Placa de la Universitat', 'Bellaterra', 'Barcelona', '8 April', 'four hours', 'the full day', 'The State Meteorological Agency', 'AMET', 'Thursday', '7 November', 'Asturias', 'Cantabria', 'Biscay', 'León', 'Segovia', 'Valencia', 'Mallorca', 'Menorca', 'Granada', 'Almeria', 'at least 23:59', 'Friday', '8 November', 'Spain', 'Wednesday', 'Valencia', 'Ibiza', 'Spain', 'Aemet', '19 September', 'Huesca, Teruel, Zaragoza, Castellón', 'Valencia', 'Burgos', 'León', 'Palencia', 'Lleida', 'La Rioja', 'Cantabria', 'Guadalajara', 'Soria', 'Barcelona', 'Girona', 'Navarra', 'Thursday', 'Friday', '18', 'the Talmadge Bridge', 'Speedway Blvd', 'Savannah Harbor Pkwy', 'At least two', 'Sri Lankan', 'Thursday, September 26', 'Maithripala Sirisena', 'At least 10', 'Kurunegala', 'Maho Junction', 'Kandy', 'Galle', 'Avissawella to Colombo Fort', 'Heuston Station', \"St John's\", 'Rd W', 'Victoria Quay', 'about 1:30 PM', 'Tuesday', 'the Mozhaysky Military Space Academy', 'St Petersburg', 'about one pound', 'TNT', 'four', 'Tuesday', 'second', 'recent years', 'Last year', 'Tuesday', 'St. Petersburg', 'Morskoy Fadad', 'Michmanskaya Ul', 'Morskaya Naberezhnaya', 'the Polyustrovskiy Market', 'Polyustrovskiy Pr', \"Kondrat'yevskiy Pr\", '115', 'Prospekt Khudozhnikov', \"Poeticheskiy Bul'var\", 'this week', 'the Port of Montreal', 'Canada', 'December 31, 2018', 'December', '99.5 per cent', 'earlier this week', 'early 2019', 'Sao Vicente', 'Guaruja e Cubatao', 'Sao Paulo', 'the Port of Santos', 'March 1', '7:00', 'Brazil', 'the first of 2019', 'February 19', 'Superior Labor Court', 'February 11', 'the Port of Santos', 'up to 100%', '2015', '50%', 'February 26', 'February 28', 'Brazil', 'Brazilian', 'the holiday', 'Ash', 'Wednesday', 'about 1 week', 'the preceding Friday', '21 days', 'Sindestiva', 'the holiday', 'the Port of Santos', 'the Port of Santos', 'December 6', 'the Maritime Union of Australia', 'the Electrical Trade Union', '3', 'Port Botany', '13:30', 'December 5', 'Sydney', 'December 7 and 8', 'DP World Sydney', 'May 1', '10:00 to 14:00', 'last month', 'Port Botany', '12.00', '16.00', 'November 11', 'DP World Fremantle', 'Hoegh London', '9342205', 'Pozzallo', 'the weekend', 'February 25', 'Tangier', 'Morocco', 'Gemlik', 'Turkey', 'February 26', 'Intelligence', 'Everstream Analytics', 'GCT Bayonne', 'New Jersey', 'September 4', 'Surge Warning', 'Poquoson', 'Virginia', 'Hampton Roads', 'the next 48 hours', 'September 18', 'approximately 13:00', 'the Port of Le Havre', 'September 17', 'January 22', 'the Port of Balboa', 'Port of Balboa', 'March 29', 'March 27', 'Chemist Warehouse', 'the National Union of Workers', 'about two weeks', 'three', 'Victoria', 'Queensland', 'Chemist Warehouse', '8.75 percent', '18.75', '22.5 percent', 'the next four years', 'November 22', 'the National Workers Unions', 'the Port of Genoa', '22:00', 'November 22', 'November 24', 'December 9', 'the Bureau of Meteorology', 'December 9 to 10', 'December 9', 'Sydney', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'December 10', 'Sydney', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'Illawarra Coast', 'December 18', 'Sydney', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'December 19', 'November 11', 'Sydney', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'November 12', 'Sydney Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Eden Coast', 'November 20', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'November 21', 'Coffs', 'Macquarie', 'Hunter', 'Sydney', 'Illawarra Coast', 'October 25', 'Eden', 'October 26', 'Sydney', 'Byron', 'Macquarie', 'Hunter', 'Sydney', 'Illawarra', 'Batemans', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'October 8', 'Wind Warning Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'October 9', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'the Australian Bureau of Meteorology', 'November 1', 'Sydney', 'Sydney', 'November 19', 'Gibraltar', 'the Port of Algeciras', 'March 28, 2019', 'the Port of Algeciras', 'the day', 'tomorrow', 'January 17', 'the Port of Long Beach', 'the day', 'January 17', 'the Port of Oakland', 'today', 'Pier 1', 'the Port of Durban', '16.15', 'September 7', 'Pier 2', '15.10', 'Pier 1', 'the Port of Durban', '01.00', 'November 13', '03.30', 'the same day', '204', '203', '2', '00.30', '02.30', 'November 13', '202', '108', 'November 20', 'the Port of Yokohama', 'November 18', 'evening', '12-24 hours', 'the Port of Dammam', '00.01', 'November 20', 'the coming days', 'Dammam Port', 'Abdul Aziz Port', '00:01', 'November 20', 'December 10', 'the Port of Genoa,', 'Italy', 'this morning', 'the coming hours', 'DCT Pier 1', 'the Port of Durban', 'South Africa', '03:30 to 06:00', 'October 28', 'the evening of', 'November 13', 'the next day', 'morning', 'the Port of Durban', '09:00', 'December 28 to 18:00', 'December 30', 'January 8', 'the Port of Rotterdam', 'January 8 to January 9', '22:00', 'December 13', 'the Port of Colombo', 'December 20', 'the weekend', 'the Port of Colombo', 'January 4', 'Port of Fuzhou', 'the Port of Gdansk', 'the afternoon of September 17 to the evening', 'the next day', 'January 15', 'January 17', 'December 13', 'Port Said', 'January 8', 'the Port of Bremerhaven', 'January 8', 'seven', 'Sinseondae', 'Busan', 'overnight', 'November 10-11', 'One', 'Three', 'November 11', 'December 9', 'the Port of Dammam', 'December 9', 'the Port of Jeddah', 'August 29', 'Port of Durban', 'South Africa', 'the noon', 'August 29', 'the afternoon', 'August 31', 'October 16', 'the Port of Durban', 'October 17', 'the day', 'October 24', 'Port of Durban', 'the afternoon', 'October 25', 'October 26', 'Earlier this week', 'Pier 1', 'the following days', 'weeks', 'August 27', 'Port of Santos’s', 'August 27', 'August 28', 'Port of Yokohama’s', 'October 23', 'Port of Yokohama', 'Japan', 'the morning', 'the evening', 'October 25', 'November 13', 'the Port of Dalian', 'November 13', 'March 8', 'November 13', 'the Port of Qingdao', '14.00', '17.00', 'December 30', 'December 30 15:00 to December 31 01:00', 'the Port of Tianjin', 'November 13', 'the Port of Tianjin', 'noon', '15.00', 'November 20', 'the Port of Yantian', 'Port of Antwerp', 'March 6', 'Port of Bremerhaven', 'March 6', 'the Port of Busan', 'around 0.5 day', '16:00', 'April 14 to 10:00 of the next day', 'Port of Dalian', 'the evening of', 'January 25', '03:00', 'the next day', '03:00', 'March 22', 'the Port of Durban', 'the day', 'Port of Hamburg', 'March 6', 'Port of Rotterdam', 'March 6', 'March 11', 'the early morning of March 11', 'the afternoon', 'September 4', 'the Port of Durban', 'September 4', '03:00 to 15:00', 'September 5', '15:00', 'September 6', 'December 4', 'the Port of Xiamen', 'the evening', 'December 4', 'the next day', 'morning', '20:00', 'April 10 to 18:00 of the next day', 'November 11', '09:00 to 22:00', 'November 11', 'the Port of Felixstowe', 'United Kingdom', 'February 5', 'the Port of Dalian', '21:00', 'February 6 to 18:00', 'February 7', 'November 13', 'the Port of Busan', 'between late November 13 and early November', 'the Port of Taipei', 'the morning', 'December 5', 'the evening', 'December 7', 'Intelligence', 'Everstream Analytics', 'July 19', 'the Port of Yangshan', '15:00', 'July 19', 'July 20', 'Tropical Storm Danas', 'Chinese', 'Shanghai', 'South Korea', 'November 13', 'the Port of Felixstowe', 'November 14', 'August 20', 'Port of Santos', 'September 17', 'the Port of Shanghai', 'the morning of September 22', 'September 23', 'South Africa', 'between December 17-19', 'the Port of Durban', 'the Port of Cape Town', 'the Port of Coega', 'Saudi Arabia', 'between December 16-17', 'Al-Jubail', 'Dammam', 'the Sucocitrico Cutrale Terminal', 'Santos', 'August 23', 'summer', 'at least 1 day', 'two-hour', '8:00 AM', '10:00 AM', 'Wednesday, March 6', 'Sydney', 'the Construction, Forestry', 'Energy Union', 'approximately 17,500', 'Ausgrid', 'Sydney', 'Hunters Hill', 'Gladesville', 'Putney, Ryde', 'Tennyson Point', 'Riverview', 'East Ryde', 'Boronia Park', 'Huntleys Cove, Henley', 'Huntleys Point', 'Lane Cove North', 'Sydney', 'the Central Coast', 'Sydney', 'Syd Einfeld Dr', 'Manly Vale', 'Rosebery', 'Two', 'Gosford', 'the Maritime Union of Australia', '24-hour', 'Sydney', 'Brisbane', 'Hutchison Ports', 'the Sydney Harbour Tunnel', 'October 18', 'the Port of Cartagena', 'metro', 'Taipei', 'Friday', '15 March', 'Changhua', 'Keelung', 'Kamphaeng Phet', 'Puli', 'Nantou County', 'Taichung', 'Taiwan', 'Central Weather Bureau', 'CWB', 'today', '29 September', 'Tropical Storm Mitag', 'New Taipei City', 'Taipei City', 'Keelung City', 'Yilan County', 'CWB', 'the next 24 hours', 'late Monday', '30 September', 'early Tuesday', '1 October', '08:00', '24 kilometers per hour', 'November 22', 'Hong Kong', 'Taiwanese', 'Chinese', 'Chinese', 'the Minjiang River', '21:30', 'November 20', 'Chuanshi Island', 'Seven', 'two', 'Qingzhou', '19:30', 'a Saint Kitts & Nevis', '8911126', '2 nautical miles', 'Tanjung Penyusop', 'Malaysia', 'Singapore', 'the night of January 30', 'November 7', 'HOYU', 'the Horsburgh Lighthouse', 'Singapore Strait', 'Singapore', 'Philippines', 'Singapore', 'AIS', 'Thursday', 'five', 'Libyan', 'Valletta', 'Maltese', 'The Elhiblu I Palau', '108', 'the Mediterranean Sea', 'Tuesday', 'evening', 'Tripoli', 'Libya', 'about seven miles', 'Maltese', 'Thursday', '170-foot', 'Malta', 'Maltese', 'Valletta', 'navy', 'five', 'Libya', 'European', 'the Mediterranean Sea', 'the European Union', 'Mediterranean', 'Operation Sophia', 'EU', 'Wednesday', 'six months', 'Italian', 'March 31', 'several years', 'this week', 'Mediterranean', '15,500 tons', 'night', 'December 10', 'Pangasinan province', 'Luzon', 'Philippines', 'Brunei', 'Ningbo', 'China', 'Team Tarantella', 'section 57', 'Montreal', 'Quebec', 'March 18, 2019', '10.20 a.m.', '45', '33 41.3 N', '073', '18.5', '1.40 p.m.', 'the North Atlantic Refining', 'March 22', '9.10 a.m.', 'the early morning hours', 'March 29', 'Ionian Star', '9828895', 'Fedje', 'Norway', 'the Coast Guard Patrol', 'KV Senja', 'Slovag', 'Liverpool', 'the United Kingdom', 'Slovag', 'Norway', 'Ulsan', 'Korea', 'January', 'Gibraltar Strait', 'Port of Algeciras', 'around 18.30', 'November 13', '3500 tons', 'Morocco', 'around 22.00', 'Algeciras', '03.30', 'November 15', 'the Alboran Sea', 'around 6:30 a.m.', 'March 29, 2019', 'W. 6th Street', 'Los Angeles', 'more than 2,000 gallons', 'April 23', 'Maxima', '(MMSI 244670098', '244700042', 'Antwerp', 'Kreekrak', 'Maxima', 'Antwerp', 'the morning', 'April 24', 'Poseidon', 'September 23', '12:05', 'Ocean Pluto', 'Fushun', '9146003', 'the Ocean Pluto', 'Fushun', 'Chittagong Outer Anchorage', 'quarter', 'Ocean Pluto', 'Fushun', 'September 26', 'The Ocean Pluto', '33,362 tonnes', 'Fushun', '44,030 tonnes', 'March 22', 'the Jawaharlal Nehru Customs House', 'Nhava Sheva', 'MH', 'Customs', \"ICEGATE's Electronic Data Interchange\", 'Maharashtra', 'Nhava Sheva', 'the Port of Le Havre', '15:00', 'March 19', 'several days', 'today', 'today', 'Canadian', 'Telson Mining Corp.', 'EUR', '1,775,000 - 2,660,000', 'Cambo Morado', 'Guerrero', 'the Port of Manzanillo', 'approximately 4-5 months', '12', 'Jalisco', 'Manzanillo', 'Telson Mining Corp.', 'Campo Morado', '2017', '2018', 'Saturday', 'ten', 'the Port of Dover', 'Four', 'the Eastern Docks Roundabout', 'A20', 'A20', 'A2', 'A2', 'Saturday', 'Global Climate Strike', 'a week', 'Saturday', 'Extinction Rebellion', 'Extinction Rebellion', 'two weeks', 'London', 'Monday, October 7', 'two-week', 'London', 'April', 'this week', 'October', 'Intelligence', 'Everstream Analytics', 'February 25', 'the Jawaharlal Nehru Port Container Terminal', 'JNPCT', 'February 26', '27', 'TOS', 'August 29', 'Terminal Roadshows', 'Transnet Port Terminal’s Acting Chief Executive', 'September 9', 'Roadshows', 'Pier 1', 'that day', 'Thai', 'the Disaster Prevention and Mitigation Department', 'DPMD', '18', 'Tropical Storm Kajiki', 'Vietnam', '55', 'Mae Hong Son', 'Chiang Mai, Chiang Rai,', 'Phrae', 'Uttaradit', 'Phetchabun', 'Sukhothai', 'Phitsanulok', 'Loei', 'Khon Kaen', 'Chaiyaphum', 'Kanchanaburi', 'Ratchaburi', 'Ranong', 'Phang Nga', '12', 'Phrae', 'Phitsanulok, Uttaradit, Nan, Phetchabun, Udon Thani', 'Roi Et', 'Yasothon', 'four', 'Chon Buri', 'Rayong', 'Chanthaburi', 'Trat', 'six', 'Ranong', 'Phang Nga', 'Phuket', 'Krabi', 'the next 1-2 days', 'The Los Angeles Unified School District', 'six-day', 'six-percent', 'April 16', '2 tons', 'CPFL', 'Avenida', 'Santos', 'SP', 'Brazil', 'the evening of', 'April 15', 'Sao Paulo Military', 'Kia', 'Hd Lb', 'the morning', 'April 16', 'November 7', 'between 01:00', '06:30', 'EUR 1,000,000', 'USD 1,100,000', 'Broughton', 'Northamptonshire', 'Felixstowe to Rocks Off Ltd', 'Cunliffe Drive', 'Kettering', 'three', 'Nonmoku Terminal', 'Yokohama Port', 'March 21', 'US', 'Antigua', 'Liberia', 'Antigua', 'USA', 'Guam', 'Liberia', 'Hansa Steinburg', 'three', 'Yokohama Port', '15:00', 'March 22', 'Monday', 'at least three', 'South Africa', 'KwaZulu-Natal', 'Two', 'approximately 9:00 PM', 'Amaoti', 'Durban', 'third', 'Okhahlamba', 'Monday', 'M4', 'Umhlanga', 'KZN Province', 'the rainy season', 'October', 'April', 'Last April', 'at least 70', 'three days', 'Tuesday', 'the South African Weather Service', 'Friday', 'South Africa', 'November 25', 'three', 'around 18:00', 'November 21', 'New Energy Engineering Company Ltd.', 'Shanghai', 'April 30', 'three', 'Hathazari Upazila', 'Chittagong', '2:40 PM', 'April 29', 'one', 'three', 'the Halda River', '3', '73,500', 'first', 'Hathazari Upazila', 'August 16', 'Tianjin', '3', '72 tons', 'Qingdao', 'one', 'ferrosilicon', 'South Korea', 'Ferrosilicon', '15-95 percent', 'Ferrosilicon', 'China', 'September 24', 'Tianjin', 'Level II', 'September 25', 'Tiangang Group', 'Tianjin Pipe Group Company', 'Tianjin', 'Rongcheng United Steel Group Company Ltd.', 'Tianjin Metallurgical Group Rolling Steel Company Ltd.', 'Tianjin', 'Tianjin', 'United Special Steel Company Ltd.', 'the National Day', 'October 1', 'Intercontinental Terminals Company', 'Deer Park', 'the Houston Ship Channel', 'Tucker Bayou', 'Light 116', 'Thursday', 'the Tanzania Meteorological Agency', 'TMA', 'Tanzania', 'season', 'TMA', 'Agnes Kijazi', 'the rainy season', 'the fourth week of February', 'Lake Victoria', 'Morogoro', 'Tanzania', 'March', 'May', 'November to December', 'the coming months', 'Tanzania', 'March 20, 2019', 'Togo', 'Ocean Princess', '18.000 tons', 'Togolese', 'Guinea', 'Burmese', 'November 30, 2018', 'Huilerie de Guinée', 'Dakar', 'a few days', 'Lomé', 'March 20', 'Adidjan', 'Greek', 'approximately 18 kilometres', 'the Port of Lome', 'Monday', '4 November', 'navy', 'two', 'Filipinos', 'Greek', 'one', 'Georgian', 'Greek', 'almost one month', 'Typhoon Faxai', 'Tokyo', 'September', 'October 12', 'Tokyo', 'The Category 5 Super Typhoon Hagibis', 'the Japan Meteorological Agency', '257 kilometer per hour', '145', 'Japan', 'overnight', 'October 11-12', 'Hagibis', 'Honshu', 'the Pacific Ocean', 'Super Typhoon Hagibis', 'Japan', 'Everstream Analytics', 'Typhoon Hagibis', 'Tokyo Bay', 'Nagoya', 'October 11', 'October 15', 'Tokyo', 'October 11', 'October 13', 'October 14', 'Yokohama\\tClosed', 'October 11', 'October 13', 'October 14', 'Chiba', 'October 12\\t October 13', 'October 14', '05:30', 'Nagoya', 'October 11', 'October 13', 'October 14', '05:30', 'Kobe', 'October 11', '12:00\\tOctober 13', '06:00', 'Osaka\\t Closed', 'October 11', '12:00 \\tOctober 13', '06:00', 'Japan Airlines', 'JAL', 'All Nippon Airways', '72', 'Tokyo', 'Haneda', 'October 11 to 12', 'Typhoon Hagibis', 'Nagoya Chubu', 'Osaka Itami', 'Osaka Kansai', 'Sendai', 'Singapore Airlines', '23', 'Japan', 'October 12-13', 'Japan', '2.2 million tons', '2018', 'Kansai', 'Haneda Airports', 'second', 'third', 'October 12', '24', '48-hours', 'October 14', 'East Japan Railway Co.', 'Central Japan Railway Co.', 'West Japan Railway Co.', 'October 12', 'Hokuriku', 'Kyoto', 'Northern Kinki', 'San-', 'Wakayama', 'JR East', 'Shinkansen', 'Tokyo', 'October 12-13', 'Odakyu Electric Railway', 'Railway', 'Kanto', 'Super Typhoon Hagibis', 'Typhoon Faxai', 'Tokyo Electric Power Company', 'four', 'Kanagawa', 'Socionext Inc.', 'Mitsui Chemicals', 'Yorozu Corporation', 'Therabiopharma Inc.', 'Nippon Steel', 'Kimitsu', 'Chiba', 'Typhoon Faxai', 'Everstream Analytics', 'Super Typhoon Hagibis', 'Japanese', '24-hour', 'Japan Meteorological Agency', 'October 22', 'San Antonio', 'Ibiza', 'Spain', 'three', 'Greek', 'Rook', 'Santos', 'January 10, 2019', 'Santos Bay', 'January 15', 'September 23', 'approximately 01:00', 'Fenton', 'New York', 'I-88', '2', '0.25-mile', 'Exit 2', 'I-88', 'February 25', 'Port Authority', 'MTA Bridges', 'New York City', 'New Jersey', '9 PM', 'New York City', 'New Jersey', 'January 30', 'MTA Bridges', 'Tunnels', 'the City of New York', '2 to 6 PM', 'January 30', 'the RFK Triborough Bridge', 'the Whitestone Bridge', 'The Throgs Neck Bridge', 'The Verrazzano-Narrows Bridge', '8 PM', 'New York City', 'today', 'March 25, 2019', 'the Jalipa-Puerto', 'the Port of Manzanillo', 'several hours', 'November 4', 'CV-30', 'the Port of Valencia', 'Valencia', 'Spain', 'Valencia', 'January 7', '209th', '211st kilometers', 'Santos', 'Guaruja', 'Santos', 'Chennai', '11:00', 'October 11', 'October 12', 'Chennai-Theni', 'the Avanti West Coast London Euston', 'Manchester Piccadilly', 'Stockport', 'Macclesfield', 'January 30', '14', 'the Port of Manzanillo', 'the Manzanillo Transporters Union', 'at least three days', 'Michoacan', 'Manzanillo', 'August 27', 'Transnet Freight Rail', 'the Natal Corridor', 'Natcor', 'South Africa', 'August 27', 'Natcor', 'Natcor', 'Rietvlei', 'Gauteng', 'Durban', 'Natcor', 'December 16', 'West Virginia', 'United States', 'the afternoon', 'December 14', 'CSX', 'Washington', 'CSX', 'the National Transportation Safety Board', 'ExtortionSectors', 'Cargo', 'Ground', 'Ports', 'ExportsOn', '14 February', 'Julian Pacheco', 'Operation Morazan II', 'Puerto Cortes', 'Cortes', 'Three', 'two', 'Choloma', '11 February', 'seven', 'Chiquita', '2019', '18', 'M-18', 'MS-13', 'the Puerto Cortes-San', 'Pedro Sula', 'December 2018', 'weekly', 'weekly', 'Pedro Sula', 'La Planeta', 'Miguel Angel Pavon', 'The National Anti-Maras', 'Gang Force', 'San', 'Pedro Sula', 'July 2018', '2018', '2019', 'San Pedro Sula', 'Puerto Cortes', 'Choloma', 'CA-13', 'Puerto Cortes', 'fourth', 'Central America', 'CA-13', 'Choloma', 'San Antonio de Cortes', 'the Valle de Sula', '2019', 'IHS Markit Foresight', '2019', 'August 23', 'Tropical Storm Bailu', 'the Port of Xiamen', 'the coming weekend', 'Taiwan', 'the early morning', 'August 24', 'China', 'Chincoteague', 'Virginia', 'Fenwick Island', 'Delaware', 'the Chesapeake Bay', 'Smith Point to Drum Point', 'the Tidal Potomac River', 'Cobb Island', '36 hours', 'the afternoon of', 'November 4', 'two', 'the Port of Hamburg', 'Koehlbrandbruecke', 'the Koehlbrand Bridge', 'Waltershof', 'Rossdamm', 'One', 'Woolloongabba', 'Brisbane', 'the morning of March 21', 'Buranda Station Rail Bridge', 'Logan', 'Cleveland', 'February 11', 'Alemoa Viaduct', 'the Port of Santos', 'February 11', 'Brazil', 'the Port of Santos', 'November 8', 'Senator-Borttscheller-Straße', 'Nordhafen', 'Bremerhaven', 'around 13:00', 'November 7', 'first', '15:15', 'Intelligence', 'Everstream Analytics', 'Japan', 'Tokyo', 'Kobe', 'Tokyo Port', '10 days', 'the coming months', 'September 12', \"NFI Industries'\", 'California Cartage Express', 'CCX', 'September 9', 'CCX', 'Wilmington', 'CA', 'CCX', 'the Port of Los Angeles', 'the Rio Tinto Mine', 'Boron', 'CA', 'the following days', 'September 5', 'September 2', 'the Port of Durban', 'the week', 'November 21', 'November 20', 'Port of Chittagong', 'Colombo', 'Singapore', 'April 23', '50', 'the Brasil Terminal Portuario', 'the Port of Santos', 'April 23', 'Cooper Santos', 'RD Logistica', 'Port', 'the Port of Santos', 'February 20', '40', 'Autônomos de Bens da Baixada Santista', 'Sindicam', 'Santos', 'SP', 'Brazil', 'Morro Ilhéu Alto', 'the Rio São Jorge', 'Sao Manuel', 'the Anchieta Highway', 'Sao Paulo', '200', 'City Hall', 'Sindicam', 'February 21', 'Santos', 'October 8', 'Anchieta-Imigrantes Highway System', 'Sao Paulo', 'Law Number 10.209 of March 23, 2001', 'Brazil', 'the Port of Santos', 'Sao Paulo', '24 hours', 'the Port Transport Association of', 'the Valencian Community', 'Valencia', 'March 2', '10:30 am', 'Tres Cruces', 'Avenida del Cid', 'Gran Vía Marqués del Turia', 'Avenida', 'Calle Ejército Español', 'January 29', 'Sintraport', 'the Port of Barcelona', 'first', 'this Thursday, January 31', 'Barcelona', 'The next day', 'Friday', 'February 1', 'Monday, Wednesday and Friday of next week', 'February 4', '6', '8)', 'the Port of Barcelona', 'Sintraport', 'the Ministry of the Interior', 'September 17', 'Everstream Analytics', 'today', '12:00', 'the Port of Le Havre', 'France', 'Rouen, Fos-sur-Mer', 'Dunkirk', 'Montoir', 'at least December 23', 'French', 'France', 'Europe', 'Antwerp', 'Zeebrugge', 'Rotterdam', 'this week', 'France', 'this week', 'the end of 2019', 'Le Havre', 'Tugboat', 'the Port of Algeciras', 'Cadiz', 'the European Union', 'March 24', 'EU', 'France', 'Germany', 'Spain', 'Turkish', 'Mersin', '20 September', '16-year-old', 'Greta Thunberg', 'the UN Climate Summit', 'New York', 'Istanbul', 'Kadıköy İskele Square', '14.00', 'Yoğurtçu Park 16:00', 'Zero Future', '18:00', 'Bursa', 'the Nilufer Climate Festival', '14:30', '20:00', 'İzmir', '19:00', 'pro-Kurdish', 'HDP', 'the Tevfik Sırrı Gür Stadium', 'Mersin', 'today', '9 February', '13:00', 'HDP', 'Hong Kong', 'the Tuzla Shipyard', 'Monday', 'two', 'eleven', 'Tuesday', 'two', 'London', 'One', '27-year-old', '21 years old', 'two', 'third', 'London', '27-year-old', 'the United Kingdom', 'March 2017', 'UK', '24', 'seven', 'Islamic', 'the election and holiday season', 'January 17', 'January 13', '2', '45 million', 'Ringgit', '10,940,000', '9,590,000', 'EUR', 'Chinese', 'Gelang', 'Forest City', '4', 'Chinese', 'Sunday January 13', 'Johor', 'Tuesday, January 15', 'Interpol', 'Johor', 'Vietnamese', 'IOLAS', 'Se Nicky', 'March 11', 'the Pedro Miguel Lock', 'the Panama Canal', 'Atlantic', 'two', 'IOLAS', 'Chile', 'Se Nicky', 'Mexico', 'the United States', 'the Panama Canal', 'NYK', 'One', 'Blue Jay', 'Turkish', 'Gunece', 'Perama Port', 'around 11.10', 'September 26', 'One', '5', 'One', 'September 19', 'two', 'Hamburg', 'two', 'One', 'Melbourne', 'FL', 'Monday, April 8', 'two', 'about 10:40 a.m.', '170 degrees', 'Melbourne', '1992', 'Absolutely Natural', 'two', '35', 'Pertamina', 'Indonesian', '10', '5:00 AM', 'the Presidential Palace', 'Jakarta', 'German', 'May 3', 'one', 'HHLA Container', 'Burchardkai', 'Hamburg', 'Germany', 'shortly before midnight', 'May 2', 'Vanwah', '01.21', 'September 21', 'Northeast of Zhoushan', 'East China Sea', 'Typhoon Tapah', '15', 'Korea', 'Thursday', 'night', 'the U.S. Consulate General', 'Tijuana', 'Weather Alert', 'American', 'Mexico', 'Baja California Sur\\n\\nEvent', 'Mexico', 'Baja California', 'La Paz', 'Santa Fe', 'the east coast', 'Baja California', 'La Paz', 'San Evaristo', 'the west coast', 'Baja California', 'Santa Fe', 'Puerto Cortes', 'Manzanillo', 'Colima', 'Punta Mita', 'Michoacan', 'Lorena', 'Baja California', 'Friday', 'afternoon', 'Protecci n Civil for Baja California Sur', 'September 20', 'Protecci n Civil', 'Consulate General Tijuana', 'Mexican', 'The Consular Agency', 'Los Cabos', 'tomorrow, September 20', 'Consulate General Tijuana', 'the U.S. National Hurricane Center', 'the Mexican National Meteorological Service', 'Servicio Meteorol gico Nacional', 'Mexican Civil Protection Agency', 'Protecci n Civil', '911', 'the Smart Traveler Enrollment Program', 'the Department of State s Hurricanes', 'Typhoons', 'Cyclones', 'the Weather Alert', 'Wednesday', 'the U.S. Embassy', 'Weather Alert', 'Tokyo', 'October 12-13, 2019', 'Typhoon Hagibis', 'Typhoon No. 19', 'Central Japan', 'Tokyo', 'Saturday, October 12, 2019', 'Sunday, October 13, 2019', 'Mission Japan', 'Twitter', 'Embassy', 'U.S.', 'Japan Meteorological Service', 'Typhoon', 'English', 'http://www.jma.go.jp/en/typh/. Information', 'September 12', 'U.S.', 'Gulf Coast', 'the Houston Ship Channel', 'Greenpeace USA', 'three', 'VLGCs', 'Enterprise', 'Targa', 'the Houston Ship Channel', 'three', 'December 19', 'U.S.', 'the Ventspils Freeport Authority', 'Latvia', 'Latvian', 'last week', 'the Port of Ventspils', 'U.S.', 'Latvian', 'Thursday', 'Uber', 'Cabify', 'Barcelona', 'Friday', 'February 1', 'UberEats', 'Catalonia', 'at least 15 minutes', '15-minute', 'Europe', 'Cabify', 'more than 3,500', 'two', 'Catalonia', 'VTC', 'Barcelona', 'Madrid', 'Uber', 'Cabify', 'Barcelona', 'Cabify', 'about one million', 'some 98.5 percent', 'less than 15 minutes', 'Catalonia', 'Madrid', 'Barcelona', 'Madrid', 'Catalonia', '15-minute', 'March 6', 'the Port of Hong Kong', 'about 0.5 day', 'March 7', 'March 8', 'April 10', 'the Port of Hong Kong', '0.5 day', 'Thursday, April 4, 2019', 'Madrid', 'Barcelona', 'Valencia', 'April 24', 'Finnish', 'Kone Elevadores', 'more than three months', 'Kone Elevadores', 'more than 2%', 'the next four years', 'Chinese', 'September 21', 'Baishu', 'Xushu Village', 'Changzhou', 'Jiangsu', 'around 16.15', 'September 20', 'Everstream Analytics', 'April 9', 'Italian', 'Ecoporto', 'the Port of Santos', 'the morning', 'April 9', 'The Santos Port Authority', 'February 20', 'the United Arab Emirates', 'Qatari', 'June 2017', 'Abu Dhabi Ports', 'last week', 'Qatari', 'UAE', 'Qatari', 'UAE', 'Qatar', 'the Business Bay Bridge', 'Dubai', 'today', '9 September', 'Jebel Ali', 'Friday', 'Nearly 200', 'the UK Student Climate Network', 'Friday, September 20', 'the United Kingdom', 'London', 'the Houses of Parliament', 'Great Peter St. Media', 'London', '3:00 PM', 'At least two', 'Millbank', 'Glasgow', 'Manchester', 'Belfast', 'Birmingham', 'Edinburgh', 'UK', 'the same day', 'Global Climate Strike', 'Friday', 'the Independent Workers Union', 'Great Britain', 'the United Kingdom', 'London', 'Birmingham', 'Nottingham', 'Uber', 'Wednesday', 'London', 'Birmingham', 'Nottingham', 'Glasgow', '1:00 PM', 'Leman St', 'London', 'King Edward Court', 'Nottingham', 'Broad St', 'Ryland St', 'Birmingham', '2:00 PM', 'Buchanan St', 'Mitchell Ln', 'Glasgow', 'the Independent Workers Union', 'Great Britain', 'Uber', 'British Airways', 'BA289', 'London', 'Heathrow Airport', 'Sunday', 'evening', 'Phoenix Sky Harbor International Airport', 'the United States', 'Westminster Abbey', 'London', 'Friday', 'afternoon', 'Campaign for Nuclear Disarmament', 'Royal Navy', 'a National Service of Thanksgiving', '50 years', 'the ‘Continuous At Sea Deterrent’', 'CASD', 'London', 'the London Overground Line', 'Friday', 'afternoon', 'Canonbury', 'Stratford', 'Canonbury', 'Richmond / Clapham Junction', 'Thursday', 'evening', 'London', '20:00', 'today', '27 April', 'Critical Swarm', 'London', 'Waterloo Bridge', '13:00', 'International Mass Die-In”', '12:05', 'Bristol', 'Bearpit', '14:00', 'Liverpool', \"Saint Luke's\", 'Bombed Out Church', '12:00', 'Parliament Square', 'London', 'midday', 'Eurostar', 'three', 'London St Pancras International', 'Paris Gare', 'Nord', 'Monday', 'evening', 'seven', 'Tuesday', '10 December', 'French', 'B&Q', 'Wandsworth', 'London', 'Smugglers Way', 'Heathrow Terminal', '5', 'The London Fire Brigade', 'Beckenham', 'Wednesday', 'Twelve', 'around 80', 'today', 'the United Kingdom', 'first', 'UN', 'New York', 'Millbank in Westminster', 'London', '11:00', 'London', 'Islington', 'Bethnal Green', 'Hammersmith', 'Manchester', 'Newcastle', 'Edinburgh', 'Belfast', 'Bath', '14:00', 'Birmingham', 'Tanhouse Avenue', '16:00', 'Brighton', 'Bristol (College Green', '17:00', 'second', 'Friday 27 September', 'Heathrow Express', '2', '3', 'today', '5 November', 'London', 'The Independent Workers Union', 'Great Britain', 'University College London', 'UCL', '98 percent', '19 November', 'zero hour', '300', 'Between 14:00-17:00', 'the Kurdistan Students Union', 'Downing Street', 'London', 'Kurdish', 'at least five', 'Turkish', \"Kurdistan Workers' Party\", 'PKK', 'Abdullah Öcalan', 'London Fire Brigade', 'around 15', 'Kingsbridge Crescent', 'Southall', 'Sunday night', 'Kingsbridge Crescent', 'Craven Avenue', 'Evelyn Grove', 'London Fire Brigade', 'Barretts Green Road', 'Willesden', 'Around 100', 'London', 'Saturday', 'morning', 'White Hart Lane', 'Tottenham', 'London', 'London Overground Line', 'Thursday', 'South Tottenham', 'Barking', 'Stratford', 'Gospel Oak', 'the RMT Union', 'London', 'the A205 South Circular Thurlow Park Road', 'Tulse Hill', 'London', 'Tuesday', 'morning', 'England', 'M20', 'Saturday', 'morning', 'Junctions 9 and 11', 'Junctions 11', '10', 'London', 'Ashford', 'Ashford', 'A20', 'A2', 'M2', 'the day', 'the Port of Dover', 'Eurotunnel', 'annual', 'Southampton Marathon', 'today', '5 May', \"Watt's Park\", '09:00', 'Bargate', 'St Mary’s Stadium', 'East Croydon', 'Brighton', 'around 13:00', 'Gatwick Express', 'London Victoria', 'Gatwick Airport', 'Southern', 'London Victoria', 'Bexhill / Bognor Regis / Brighton / Eastbourne', 'Portsmouth Harbour', 'Thameslink', 'London Bridge', 'Horsham', 'Bedford', 'Three Bridges', 'Brexit', 'today', '20 April', 'London', 'London', 'Yellow Vest', 'Trafalgar Square', 'midday', 'Parliament', 'Ambleside', 'Tim Farron', '19', '09:30', 'Cleethorpes: Memorial Hall', '13:00', 'Leigh', '12:00', 'Newcastle', 'Eldon Square', '13:30', 'Nottingham', 'North Circus Street', '14:00', 'Paignton', 'Paignton Pier', '12:00', 'Plymouth', 'Sundial', '12:00', 'London', 'London', 'London Underground', 'Monday', 'morning', 'Central Line', 'White City', 'White City', 'Circle', 'Gospel Oak', 'Barking', 'Stratford', 'Richmond / Clapham Junction', 'today', \"Workers' Memorial Day\", 'Aberdeen', 'Persley Walled Gardens', '12:30', 'Bathgate', 'Workers Memorial', 'Bathgate Sports Centre', '12:30', 'Bonnyrigg', 'George V Park', '12:30', 'Bradford', '11:45', 'Calderdale', '13:00', 'Summerlee Industrial Museum', '12:00', 'Dudley', '12:30', 'Dundee', 'Discovery Quay', '12:00', 'Edinburgh', '13:00', 'Falkirk', 'Callendar Riggs', '11:00', 'Rose Garden', 'Saltwell Park', '12:00', 'Grimsby', 'Cenotaph', '13:00', 'Hamilton', 'Almada Street', '11:00', 'Hartlepool: Church Square', '12:30', '12:45', '14:00', 'Keighley', 'Shared Church', '18:30', 'Leicester', 'Town Hall Square', '12:00', 'Liverpool', '11:15', 'London', 'Leyton', '13:15', 'Manchester', 'Albert Square', '12:00', 'Milton Keynes', 'John Lewis', '11:30', 'Paisley', '13:00', 'Renfrew', '11:00', 'Rotherham', '12:00', 'Southampton', '10:45', 'Stanley Crook:', 'Saint Thomas’ Church', '19:00', 'Wolverhampton', 'Saint Peter’s', '12:30', '22-25 March', 'Brexit Protest', 'UK', 'the European Union', '22 March', 'Cornwall', 'Truro', '15:30', 'Flintshire', 'Deeside Industrial Estate', '19:00', 'Lancashire', 'Morecambe Road', 'A683', 'Lancaster', '18:30', 'M1', '26', 'Shropshire', 'A5', 'Shrewsbury', 'Telford', '17:30', 'Suffolk', 'Felixstowe', '23 March', 'Anglesey', 'Holyhead Ferry Terminal', '22:00', 'Cheshire', 'Warrington', '12:00', 'Shire Hall', 'Gloucester', '11:00', 'Greater Manchester', 'Yorkshire/Merseyside', 'Leeds', 'Liverpool', '12:00', 'Irish Ferries', 'Pembroke Dock', '11:40', '25 March', 'Hampshire', 'M3 Junction 6', 'Basingstoke', '06:30', 'today', '20 April', 'annually', '4/20', 'four-twenty', 'London', 'Hyde Park', '11:00', 'Belfast', 'City Hall', '15:00', 'Botanic Gardens', '16:20', 'Brighton', 'Preston Park', '13:00', 'Bristol', 'Castle Park', '16:20', 'Glasgow', 'Glasgow Green', 'Leeds', 'Woodhouse Moor', '13:00', 'Swansea Beach', '14:00', 'Homefield Park', '12:00', 'National Rail', 'the RMT Union', 'London Northwestern Railway', 'West Midlands Railway', 'today', 'every Saturday', 'the 28 December', 'Tottenham Hale', 'London', 'Ferry Lane Primary School', 'Jarrow Road', 'one', 'National Rail', 'Great Northern', 'Thameslink', 'London', 'Cambridge', '22:00', 'National Rail', 'London', 'Waterloo', 'Friday', 'afternoon', 'London Waterloo', 'Windsor & Eton Riverside / Reading / Shepperton / Chessington South / Hampton Court / Weybridge / Dorking / Woking / Alton / Guildford / Basingstoke / Yeovil Pen Mill / Exeter St Davids / Southampton Central / Portsmouth & Southsea / Portsmouth Harbour / Poole / Weymouth', 'at least 21:00', 'Wednesday', 'morning', 'London', 'Liverpool Street', 'Colchester', 'Greater Anglia', '13:00', 'Sunday', 'afternoon', 'London Paddington', 'Heathrow Terminals', '2', 'Heathrow Central', 'Great Western Railway', 'Heathrow Express', 'TfL Rail', '16:30', 'Queens Road Peckham', 'Dalston Junction', 'Clapham Junction', 'London Bridge', 'Sutton', 'Surrey', 'Caterham', 'Selhurst', 'Beckenham Junction', 'Trains', 'Surrey Quays', 'Clapham Junction', 'London', '13:00', 'Dalston Junction', 'Surrey Quays', 'London', '15:00', 'the London Marathon', 'Sunday 28 April', '26-mile', 'Central London', 'between 04:00-19:00', 'Charlton Way', 'Shooters Hill Road', 'Artillery Place', 'John Wilson Street', 'Woolwich Church Street', 'Woolwich Road,', 'Surrey Quays Road', 'Highway', 'Narrow Street', 'Westferry Road', 'North Colonnade', 'Poplar High Street', 'Upper Thames Street', 'Victoria Embankment', 'Birdcage Walk', 'Parliament Square', 'London', 'Friday', '3 May', 'Between 11:00 and 14:00', 'Broad Sanctuary', 'Victoria Street', 'Parliament Square', 'Great Smith Street', 'National Rail', 'Bournemouth', 'Southampton Central', 'Brockenhurst', 'Brockenhurst', 'Lymington Pier', 'London', 'Highbury & Islington', 'Dalston Junction', 'Dalston Junction', 'Surrey Quays', 'Eurostar', 'London', 'Paris Gare', 'Nord', 'Wednesday', 'French', 'today', '9019', 'Paris', 'Nord', 'London St Pancras', '9039', 'Paris', 'Ebbsfleet International', 'London St Pancras', '9059', 'Paris', 'Ashford International', 'London St Pancras', '21:03', 'Paris Gare du Nord', 'Ebbsfleet International', 'London St Pancras', '9050', '19:01', 'London St Pancras', 'Paris Gare', 'Caledonian Sleeper', 'London Euston', 'Fort William', 'England', 'Scotland', 'RMT', 'between 12:00', '29 September', '23:59', '1 October', '29', 'London', 'London', 'Highbury & Islington', 'Crystal Palace/ West Croydon', 'Clapham Junction', 'Surrey Quays', 'New Cross', 'Edgware Road', 'Edgware Road', 'Hammersmith', 'Metropolitan', 'Baker Street', 'Aldgate', 'National Rail', 'Surrey Quays', 'New Cross Gate', 'London', 'New Gate Cross', 'National Rail', 'London', 'Saturday', 'Hatfield', '20:00', 'Croydon', '24 hour', '28 March', 'ASLEF', 'London', 'all day', 'Two', 'the Port of Dover', 'two', 'West Midlands', 'London Bridge', '29 November', 'London', 'Wednesday', '8 May', 'between 07:00-16:00', 'between 13:00-16:00', 'London', 'Leman Street', 'Aldgate', 'Birmingham', 'Broad Street', 'Glasgow', 'Buchanan Street', 'Nottingham', 'King Edward Court', 'M2', 'Thursday', 'morning', 'junctions 6 and 7', 'M2', 'London', 'United Automobile Workers', 'UAW', 'General Motors', 'GM', '11,000', 'GM', 'Lordstown', 'OH', 'Warren', 'Baltimore', 'MD', 'September 16', '40 days', '401k', 'GM', 'US', '33', '22', 'Michigan', 'Ohio', 'New York', 'Kentucky', 'Tennessee', 'Texas', 'Missouri', 'Indiana', 'Kansas', 'GM', 'US', '$1 billion', 'the next coming days', 'UAW Mack Truck', 'October 12', 'UAW Mack Truck', 'Mack Truck', 'Allentown', 'PA', 'Middletown', 'PA', 'Hagerstown', 'MD', 'Baltimore', 'MD', 'Jacksonville', 'FL', 'March 21', 'more than 200', 'Selaras Kausa Busana', 'SKB', 'March 14', 'the Indonesian Ministry of Manpower Office', 'Embassy', 'South Korea', 'Jakarta', 'Global Union', 'six months', '2,000', 'August to September 2018', 'South Korean', 'Kim Jae-Chul', 'Korea', 'IDR 97 billion', 'EUR', '6.0 million', 'SKB', 'Bekasi', 'West Java Province', 'K-Mart', 'Target', 'Disney', 'Queensland', 'the Scenic Rim', 'Noosa Banks', 'the Gold Coast', 'Laidley Thornton', 'the Lockyer Valley', 'Jimna', 'the Sunshine Coast', 'Buccan', 'Brisbane, Lower Beechmont', 'the Gold Coast', 'New South Wales', 'one', 'Australian', 'four', 'New South Wales', 'NSW', 'Queensland', 'over 125', '70', 'Queensland', 'more than 55', 'NSW', 'Thursday', 'two', 'Queensland', 'NSW', 'the weekend', 'midday', 'Thursday', 'Noosa North Shore', 'the Sunshine Coast', 'Woodgate', 'Black Snake', '16 year old', '14', 'Yeppoon', '650km', '400 miles', 'Brisbane', 'Queensland', 'Thornycroft Street', 'Campbellfield', 'Melbourne', 'Friday', 'morning', 'Bradbury Industrial Services', 'The Environment Protection Authority', 'more than 400,000', 'More than 175', 'the day', 'several days', 'Australia', 'Friday 20 September', 'Over 80', 'Adelaide', 'Victoria Square', '12:00', 'Brisbane', 'Cairns', 'Cairns Esplanade', '09:00', 'Byron Bay', 'Canberra', 'Glebe Park', '12:00', 'Darwin', 'Parliament House', '13:00', 'Geelong', 'Geelong City Hall', 'Gold Coast', '12:00', 'Hobart', '12:00', 'Launceston', 'Civic Square', '12:00', 'Melbourne', 'Treasury', '14:00', 'Newcastle', '12:00', 'Perth', 'Forrest Place', '11:00', 'Sydney', '12:00', 'Wollongong', '12:00', 'Yellow Vest', 'Saturday', '9 February', '19 January', 'Australian', 'Victoria Square', '11:00', 'Bellingen Showgrounds', '09:00', 'Bribie Island', 'Bribie Island Walk', '12:00', 'Bundaberg', '11:00', 'Byron Bay:', 'Byron Flea', 'Gilmore Crescent', '09:00', 'Cairns', 'Cairns Esplanade', '11:00', 'Canberra', 'Garema Place', '11:00', 'Darwin', 'Mitchell', 'Daly', '10:30', 'Gold Coast', '11:00', 'Kilkoy', 'Yowie Park', 'Lismore', '11:00', 'Mackay', 'River Street', 'Forgan Bridge', '11:00', 'Melbourne', 'Victoria', '12:00', 'Perth', 'Forest Chase', '12:30', 'Sunshine Coast', '11:00', 'Sydney', 'Whitsunday', 'Pioneer Park', '11:00', 'France', 'Australian', 'Sydney', 'New South Wales', 'the Bureau of Meteorology', 'Friday', '6 December', 'the weekend', '100', 'the Maritime Union of Australia', 'three', 'Port Botany', 'Manly Wharf', 'Sydney', 'The Bureau of Meteorology', 'Sydney', 'New South Wales', 'North Richmond', 'Windsor', 'Hunter', 'Sydney Metro', 'the Mid North Coast', 'Illawarra', 'Central Tablelands', 'North West Slopes', 'Central West Slopes', 'Queensland', 'New South Wales', 'about 150', '46', '0%', 'an estimated one million', '80 kilometers per hour', '13', 'Greater Sydney', 'Greater Hunter', 'Illawarra/Shoalhaven', 'Hundreds', 'today', 'thousands', 'Sydney', 'Port Macquarie', 'Coffs Harbour', 'today', '12 November', 'Sydney', 'Friday', 'evening', 'Parramatta', 'Guildford', '61', 'around an hour', 'Sydney Olympic Park', '40mm', '40 minutes', '50mm', 'West Pennant Hills', '40mm', 'Peakhurst', '36mm', 'Chatswood', 'Endeavour Energy', 'approximately 27,800', 'Sydney', 'Saturday morning', 'Some 250', 'Western Australia State', 'around 125 kilometres per hour', 'Karratha', 'Port Hedland', 'at least five', 'Hurricane Dorian', 'Bahamas', 'Tuesday', '3 September', 'a Category 3 Hurricane', '50km', 'Freeport, Grand Bahama', 'Bahamas', 'the National Hurricane Center', 'Hurricane Dorian', 'Grand Bahama', 'Tuesday', 'afternoon', 'about 50 miles', 'Freeport', 'three mph', '110 mph', 'a Category 5 to Category 2', 'the past 24 hours', 'this evening', 'Florida', 'Grand Bahama', 'Abaco Island', 'Thousands', 'five', 'Hurricane Dorian', 'Grand Bahama Island', 'Category 5', 'Freeport', '180mph', '289', '200mph', 'National Hurricane Center', 'Grand Bahama', 'up to the', '24 hours', 'Abaco Islands', 'The Bangladesh Meteorological', 'Cyclone Fani', 'Mongla', 'Payra', 'Bangladesh', 'around midnight', 'tonight', 'around 100km per hour', 'the Cyclone Preparedness Programme', '1,755', 'Barishal', 'Patuakhali', 'Bhola', 'Barguna', 'Pirojpur', 'over 25,000', 'six', 'Payra', 'Mongla', 'six', 'Chattogram', 'seven', 'Mongla', 'Cyclone Fani', 'Thursday', 'Bhola', 'Barguna', 'Patuakhali', 'Pirozpur', 'Khulna', 'Satkhira', 'seven', 'the day', 'Chittagong', 'four', 'Thursday', 'Hatia', 'Sandwip', 'Bangladesh Meteorology', 'the Bangladesh Road Transport Workers Federation', 'BRTWF', '24-hour', 'Chittagong', '28 April', '4 May', '4 May', '06:00 the following morning', 'Belgium', 'Wednesday 13 February', 'Brussels', 'metro', 'this morning', 'Only one', 'four', 'six', '3', '4', '7', '51', '82', '92', 'four', '29', '46', '71', '87', 'Brussels', 'Wednesday', 'TEC', 'Charleroi', 'Namur', 'less than 30 percent', 'Antwerp', 'Genk', 'Friday', '1 November', 'Metro Vancouver', 'the Coast Mountain Bus Company', 'Unifor', 'Thursday', '08:00', 'over 60,000', 'British Columbia', 'Saturday', 'morning', '9 February', 'the Lower Mainland', 'Sunshine Coast', 'South Vancouver Island', 'Wind Warning', 'Metro Vancouver', '90 km', 'Chile', 'today', '12 November', 'Santiago', 'Iquique', 'Puerto Montt', 'Valparaiso', 'San Antonio', 'at least six', 'the Chenjiagang Chemical Industrial Park', 'Xiangshui County', 'Thursday', 'At least 30', 'China', '2.2', 'Lianyungang', 'Colombia', 'Monday', '25 November', 'The Central Union of Workers', 'CUT', 'today', 'Cartagena', '16:00 local time', 'La India Catalina', 'Camellon de los Martires', 'overnight', 'Havana', 'three', '172', 'Monday', '28 January', 'Santos Suárez', 'Luyanó', 'Via Blanca', 'Regla', 'Chibás', 'Pinar del Río', 'Artemisa', 'Mayabeque', 'today', '3 October', 'midnight', 'Quito', 'Guayaquil', 'several kilometers', 'the Aeropuerto Internacional Mariscal Sucre', 'today', '12 October', 'Ecuadorian', 'hundreds of thousands', 'Quito', 'Guayaquil', 'Cuenca', 'Wednesday', '9 October', 'today', 'Moreno', 'Quito', 'Plaza del Teatro', 'Quito', 'Puente de la Unidad Nacional', 'Guayaquil', 'this morning', 'today', '4 October', 'At least 200', 'Guayaquil', 'Quito', 'Cayambe', 'Cuenca', 'Portoviejo', 'Manta', 'Portviejo', 'Guayaquil', 'tonight', '2 October', 'Lenin Moreno', 'Guayaquil', 'Quito', 'the night', 'tomorrow', '3 October', 'Ecuador', '883', 'the International Monetary Fund', 'Lenín Moreno', 'Quito', 'Tuesday', '15 October', 'Guayaquil', 'eight', 'more than 1,500', '435', '1,192', 'the upcoming weeks', 'French', 'today', '10-15%', 'SNCF', 'Transilien', 'Eurostar', 'Paris', 'London', 'Easter', '21 April', 'Essen', '18:00', 'Frankfurt', 'Walter-Korsing-Straße', '14:00', 'Marktplatz', 'Sunday', '22 April', 'Bad Homburg', '11:00', 'Cottbus', '14:00', 'Darmstadt', 'Luisenplatz', '10:30', 'Dortmund', '13:00', 'Friedensplatz', 'Dülmen', 'Marktplatz', '11:30', 'Emden', '11:15', 'Am Stadtgarten', '12:15', 'Frankfurt', 'Römerberg', '13:00', 'Friedberg', 'Rote Laden', '10:30', 'Fürth', 'Nürnberger Straße', '12:30', 'Garching', '11:30', 'Gießen', '09:00', 'Hamburg', 'Sankt Georgs Kirchhof', '12:00', 'Hamm', 'Martin-Luther-Platz', '11:00', 'Hohnstein', 'Hohnstein Castle', '11:30', 'Kassel', 'Holländische Straße/Schenkebier Stanne', '09:45', 'Henschelplatz', 'Bebelplatz', 'Rathaus', '12:00', 'Krefeld', '14:00', 'Konstanz', '10:45', 'Hafenplatz', 'Kreuzlingen', 'Switzerland', '13:00', 'Lüchow', 'Gaststätte Amtshof', 'Lange Straße', '09:45', 'Marburg', 'Frankfurter Straße', '11:00', 'Ludwig-Schüler-Park', '12:30', 'Magdeburg', 'Alter Markt', '09:00', 'Müllheim', 'Robert-Schuman-Kaserne', '14:00', 'Munich', 'Marienplatz', '10:45', 'Alte Amtmannei', 'Joseph-Moehlen-Platz', 'Nuremberg', 'St. Lorenz Church', '15:00', 'Offenbach', 'Aliceplatz', '10:30', 'Sassnitz', 'Stadthafen Port', 'the second day', 'Greece', 'Piraeus', 'Crete', 'Thursday', 'night', 'Friday', 'morning', 'Thursday', '14 November', 'Wednesday', 'Central', 'Central', 'Kowloon', 'New Territories', 'the Sai Wan Ho', 'Hong Kong', 'At least one', 'the Chinese University of Hong Kong', 'the Polytechnic University', 'Hung Hom', 'Monday', 'morning', '05:30', 'Friday', 'evening', 'Connaught Place', 'Man Cheung Street', 'Connaught Road Central', 'Des Voeux Road Central', 'House', 'Pedder Street', 'Connaught Road Central', 'Pedder Street', 'Connaught Road Central', 'Pedder Street', 'Connaught Road', 'Cathay Pacific', 'Hong Kong', 'the Airport Express', 'today', 'Central', 'the Harbour Building', 'Sheung Wan', 'Tuesday night', 'Hong Kong', 'the past hour', 'Mong Kok', '44', '91', 'MTR', 'Po Lam', 'Nathan Road', 'Mong Kok', '51', '100', 'Elizabeth', 'today', 'Wednesday 2 October', 'Hong Kong', 'at least 29', 'overnight', 'Kwun Tong', 'CCTV', 'June', 'more than 700', 'Sunday', 'Tsuen Wan', 'coming weeks', 'this weekend', 'Hong Kong', 'a week', 'district council', 'last Sunday', '24 November', 'Hong Kong Polytechnic University', '12 days', 'Sunday', '1 December', '2 December', 'target morning', 'Citywalk', 'Tsuen Wan', 'V City', 'Festival Walk', 'four', 'Monday', '11 November', 'MTR', 'Tuen Min', 'Hong Kong', 'Saturday', 'afternoon', 'Tuen Wui Street', 'Tuen Lee Street', 'Tuen Wui Street', 'Tuen Mun Heung Sze', 'the Tuen Mun Town Plaza', 'The India Meteorology Department', 'Cyclone Fani', 'the South East Bay', 'Bengal', 'the end of Monday', '21 kilometres per hour', '910 kilometres', 'Chennai', '1090 kilometres', 'Machilipattinam', 'the North West', '1 May', 'the coming days', 'Kerala', 'Tamil Nadu', 'Puducherry', 'Tamil Nadu', 'South Andhra Pradesh', 'the North Jakarta New Estuary Fishing Port', 'more than ten', 'Japan', 'Typhoon Hagibis', 'Iwate', 'Miyagi', 'Yamagata', 'Fukushima', 'Ibaraki', 'Gunma', 'Tochigi', 'Saitama', 'Kanagawa', 'Chiba', 'Yamanashi', 'Nagano', 'Niigata', 'Tokyo Metro', '60', 'nearly one million', 'Tokyo', 'Typhoon Faxai', 'this morning', 'more than 100', '200 kilometers per hour', 'at least 30', 'The Yokohama Port', 'Saturday 12 October', 'the Rugby World Cup', 'Typhoon Hagibis', \"Super Typhoon Hagibis's\", 'approximately 950 miles', 'Tokyo', 'the early hours of', 'around 9 miles per hour', 'Japan', 'the later hours', 'up to 160 miles', 'around 90 miles per hour', 'the evening', '11 October', 'early 12 October', 'The Japan Meteorological Agency', 'Typhoon Hagibis', 'Honshu Island', 'Saturday', 'one', 'Tokyo', 'Gunma', 'Saitama', 'Kanagawa', 'Yamanashi', 'Nagano', 'Shizuoka', 'Kanagawa', 'Shizouka', 'Honshu', 'The Japan Meteorological Agency', 'Super Typhoon Hagibis', '24-hours', 'Japan', 'Tokyo', 'Yokohama', 'Monday', 'Japan', 'Hagibis', 'Japan', 'Honshu', 'Friday', '11 October', 'Saturday', 'Sunday', '270 kilometres', 'Japan', 'the Rugby World Cup', '3,700', 'Ebina', 'Kanagawa Prefecture', 'Izu Oshima Island', 'Tokyo', 'Typhoon Faxai', 'Around two million', 'Kanagawa', 'Shizuoka Prefectures', 'Chiba', 'Videos', 'Level 3', 'Shimoda city', 'Tokyo', 'The Japan Meteorological Agency', 'Typhoon Faxai', 'Kanto Region', 'Shizuoka', 'tonight', '8 September', '90mph', '130mph', 'Shizuoka', 'Yamanashi', 'Kanagawa', 'Tokyo', 'Chiba', 'Ibaraki', 'Typhoon Hagibis', 'Kanto', 'the Greater Tokyo Area', 'seven', 'Gunma', 'Tochigi', 'Ibaraki', 'Saitama', 'Tokyo', 'Chiba', 'Kanagawa', 'this weekend', 'Ogasawara', 'Wednesday', 'Japan', 'the Rugby World Cup', 'Kenya', '132', 'an additional 17,000', 'the Horn of Africa', '300%', 'the past two months', 'the Kenyan Red Cross', '32', 'the Lake Victoria Basin, Lower Tana Delta', 'Coastal', 'Central', 'the end of December', 'The US National Hurricane Center', 'NHC', 'Lorena', 'one', 'the pacific coast', 'Lorena', 'about 35 miles', '55 km', 'Manzanillo', 'Colima State', '75 miles per hour', '120', 'NHC', 'Mexican', 'between 150 and 250', 'Netherlands', 'Wednesday', 'Amsterdam', 'Rotterdam', 'Leeuwarden', 'Utrecht', 'Around 4,400', 'secondary', 'Wednesday', '22 February', 'the Bureau of Customs in Port Area', 'Manila', 'today', '29 October', '6.6', 'Tulunan', 'At least one', 'more than 40', 'Kidapawan City', \"M'lang\", 'Santos City', 'Polomok', 'Tacurong City', 'Carmen', 'one', '6.8', '6.9', 'Matanao', '12 km', 'Digos City', '61 km', 'Davao City', 'Mindanao', '28.2km', 'the Pacific Tsunami Warning Centre', '6.6', 'Tulunan', 'Tuesday', 'morning', 'Tulunan', 'Mindanao', 'North Cotabato', 'Davao City', 'Koronadal City', 'Digos City', 'Santos City', 'Evacuations', 'The United States', 'at least two', '5.0', '5.8', 'Visayas', 'Mindanao', 'Low Pressure Area', 'the Philippine Area of Responsibility', 'Tropical Depression Amang', \"Surigao Del Norte's\", 'Siargao Island', 'PAGASA', 'Caraga', 'Eastern Visayas', 'Davao Oriental', 'Compostela Valley', 'Catanduanes', 'Albay', 'Sorsogon', 'Masbate', 'Northern Negros Provinces', 'Northern Cebu', 'Mindanao Island', '6.9', 'Digos City', 'Davao City', 'Santos City', 'South Cotabato Province', 'Cagayan de Oro', 'Misamis Oriental Province', 'as far as', '942 kilometers', '6.9', 'Digos City', 'Padada', 'Digos City', 'Digos City', 'the Gaisano Mall of Davao (Davao City', 'Two', '5.0', '5.7', '6.3', 'North Cotabato', 'Mindanao Island', 'Davao City', 'Earthquakes', 'Polish', 'Pomeranian Voivodeship', '23:00', 'Sunday 8 December', 'approximately 75 kilometres per hour', 'Gdansk', 'Pedro Nuno', 'the National Union of Dangerous Goods Drivers', 'three-day', 'The National Iranian Oil Company', 'the Red Sea', 'Iranian', 'South African', 'Society of Bank', 'Friday', '27 September', 'ATM', 'the day', 'Thursday', 'Cape Town', 'Johannesburg', 'Durban', 'Port Elizabeth', 'Bloemfontein', \"the South African Municipal Workers' Union\", 'Durban', 'Tuesday 30 April', 'N3', 'the Pavilion Interchange', 'the M13 Exit', 'Paradise Valley', 'City Hall', 'Pixley KaSeme Street', 'The Congress of South African Trade Unions', 'nine', 'the coming weeks', 'the Western Cape', '19 February', '13 February', '09:00', 'Durban', 'Chamber of Mines', 'Njoli Square', 'Nanjoza', 'Johannesburg', 'Mary Fitzgerald Square', 'Gauteng Provincial Legislature', 'Kimberley', 'Kemo Hotel to Department of Labour', 'Mthatha', 'the Department of Labour', 'Indoor Sports Centre', 'Town Hall', 'Thohoyandou: Thohoyandou Stadium', 'Western Cape', 'Keizersgracht Street', 'Parliament', '19 February', '09:00 - the day', 'Finance', 'Tito Mboweni', 'Budget', 'the South African Society of Bank', 'Friday 27 September', 'four', 'Nedbank', 'Standard Bank', 'FNB', 'ABSA', 'last year', 'Joe Kokela', 'The Congress of South African Trade Unions', 'Cosatu', 'five', 'Johannesburg', 'Durban', 'Bloemfontein', 'Port Elizabeth', 'South African', 'thousands', 'Durban City Hall', 'Thursday 2 May', 'Anton Lembede Street', 'Baleària', 'Algeciras', 'Wednesday 27 March', 'Thursday 28 March', 'Metro', 'Barcelona', 'metro', '29 April', 'Monday', 'morning', '8 April', 'between 20-40 percent', 'the day', 'Sagrada Família', 'La Sagrera', 'The Barcelona Metropolitan Transport Company', 'the busiest hours', 'between 06:00-09:30', '16:00-20:00', 'daily', 'The Foreign and Commonwealth Office', 'Spain', 'AEMET', 'Valencia', 'Murcia', 'Almeria', '12', 'September', 'Spanish', '8 March', 'International Women’s Day', 'Madrid', 'Barcelona', 'Badalona', 'Plaza de la Vila', 'Plaza de la Dona', '16:00', 'Tarragona', 'Plaça Imperial Tarraco', '17:00', 'Girona', 'Independència - Plaça del Lleó', '18:00', 'Lleida', '8', '19:00', 'Valencia', 'Estació de Xátiva', '18:00', 'Alicante', 'Avenida de la Estación', '19:00', 'Burgos', 'Avenida de la Estación', '20:00', 'Salamanca', 'Plaza de la Concordia', '19:00', 'Valladolid', '20:00', 'Almeria', 'Puerta', '19:00', 'Cádiz', '18:00', 'Malaga', 'Marina', '18:30', 'Seville', 'Puente de Triana', '19:30', 'Pamplona', 'Cines Golem', '19:00', '18:00', 'Albacete', 'Punta del Parque Abelardo', '18:00', 'Bilbao (Sagrado Corazón', '19:00', 'Mallorca', '19:00', 'Murcia (Plaza Fuensanta', '19:00', 'Gran Canaria', '19:00', 'Tenerife (Avenida de Bélgica', '19:00', 'Spanish', 'Thursday', 'morning', 'Catalonia', 'Barcelona', 'C-17 Gurb', 'C-16 Berga', 'C-60', 'Roca Granollers', 'Avenida Diagonal', 'Avenida Meridiana', 'Gran Via', 'Calle de Sants', 'Ronda General Miter', 'Plaza Lesseps', 'Girona', 'Tarragona', 'Lleida', 'Catalan', 'Barcelona', 'today', '16 February', '2017', '17:00', \"Plaça d'Espanya\", 'Gran Via de les', 'Plaça de la Universitat', '18:00', 'Thursday', '21 February', 'the Catalonia Region', 'the Sindicato de Estudiantes', 'Països Catalans', 'Barcelona', 'Tarragona', 'Girona', 'Lleida', 'Wednesday', '16 October', 'Thursday', '17 October', 'Friday', '18 October', 'Intersindical-CSC', 'Catalonia', 'Overnight', 'Barcelona', '75', 'Gran Via de les Corts Catalanes', 'tonight', '18 January', 'Barcelona', 'at least three', 'tonight', 'today', 'Catalan', 'Monday', '14 October', 'Spain', 'Supreme Court', 'nine', 'Catalan', 'between nine and 13 years', '2017', 'recent weeks', 'two', 'the Catalan National Assembly', 'ANC', 'Omnium Cultural', 'this evening', 'the coming days', 'five', 'Barcelona', 'Friday', '18 October', 'Spanish', 'Gran Via', 'Diaganol', 'Barcelona', 'Tuesday', 'morning', 'Gran Via', 'Entença', 'Sicília', 'the Passeig de Gràcia', 'Plaça de Catalunya', 'Avenida Diagonal', 'Plaça Francesc Macià', 'Carrer Albert Bastardas', 'H12', 'H16', '7', '13', '52', '54', '55', '59', '91', 'Barcelona', 'Barcelona', 'Saturday', '19 January', 'Gran Via', 'tens of thousands', 'Barcelona', 'Friday', 'afternoon', 'the ‘Freedom March', 'Meridiana', 'Gran Vía', 'Diagonal', 'thousands', 'Catalonia', 'Jardinets de Gràcia', 'the coming hours', '17:00', 'the Port of Barcelona', 'The U.S. Department of State', 'Barcelona', '21 February', 'Catalonia', 'U.S.', 'Catalonia', 'Uber', 'Cabify', 'Barcelona', 'Catalan', '15 minutes', 'Generalitat', 'Barcelona', 'Madrid', 'recent days', 'Uber', 'Cabify', 'Spain', 'VTC', 'two', 'Barcelona', 'more than 3,500', 'VTC', 'Ronda Litoral', 'Barcelona', 'Monday', 'Barcelona', 'VTC', 'Uber', 'today', 'the coming days', 'overnight', '100 megawatts', 'the Port of Colombo', '30 March', 'At least 17', 'yesterday', '6.1', 'Hualien', '6.0', 'the United States', 'the China Earthquake Networks Centre', '6.7', 'Taipei', '101', 'Tropical Storm Bailu', 'Taitung County', 'the Hengchun Peninsula', 'Saturday', 'afternoon', 'The Central Weather Bureau', 'CWB', 'Taitung', 'Hualien', 'Pingtung County', 'today', 'CWB', 'Hualien', 'Taitung', 'Orchid Island', 'Green Island', 'the Hengchun Peninsula', 'Pingtung', 'Kaohsiung', 'Tainan', 'Chiayi', 'Yunlin', 'Changhua', 'Nantou', 'Penghu', 'Kinmen', 'Tainan City', 'Kaohsiung City', 'Pingtung County', 'Taitung County', 'Friday', 'evening', 'Willesden', 'London', 'today', '28 January', 'Barretts Green Road', 'London', 'the Docklands Light Railway', 'South Quay', 'Crossharbour', 'Limeharbour', 'Tuesday', 'afternoon', 'Heathrow Terminal 5', 'London', 'North Atlantic Treaty Organisation', 'NATO', 'London', 'between 3 and 4 December', '70 years', 'Grove', 'Watford', 'Langleybury Lane', \"Chandler's Cross\", 'Grove', 'the early hours', 'Thursday', 'morning', 'Buckingham Palace', 'NATO', '18:00', 'Tuesday', 'night', 'US', 'Donald Trump', 'NATO', 'today', '12 April', '4', 'Central London', 'Parliament Square', 'between 11:00-14:00 Local time', 'Parliament Square', 'Brighton', 'Churchill Square', '11:00-14:00', '10:00-13:00', 'Dorchester', '11:00-14:00', 'Glasgow', 'George Square', '11:00-14:00', 'Leeds', 'Town Hall', '11:00-14:00', 'Manchester', 'St Peter’s Square', '12:00-14:00', '10:00-15:00', 'Wednesday', 'afternoon', 'London Liverpool Street', 'Colchester', 'Greater Anglia', '15:00', 'London', 'London Paddington', 'Heathrow Terminals', '2', 'Rail', \"the London Underground's\", 'Bakerloo Line', '13', '14 January', 'today, 8 March', 'International Women’s Day', 'City Hall', '16:00', 'Maldonado: Explanada', '15:00', 'Plaza San Fernando', '17:30', 'Salto', 'Plaza Artigas', '19:00', 'Tacuarembó', '18:30', 'Los Angeles', 'City Hall', 'the fifth day', 'later today', 'the Whitehall Terminal', 'Lower Manhattan', 'New York', 'the Port Authority Bus Terminal', 'New York City', 'Thursday', 'Thursday', 'Detroit', 'the National Weather Service', 'Wayne', 'Oakland', 'Macomb', 'Monroe', 'Washtenaw', 'Lenawee', '16:00', 'Thursday', '10:00', 'Friday', 'Wednesday', '1 September', 'Hurricane Dorian', '8 mph', '150 mph', '155 mph', 'Florida', 'Atlantic', 'Georgia', 'Carolinas', '2', 'Brunswick', 'GA', 'Charleston', 'SC', 'Wilmington', 'NC', 'more than six inches', 'Florida', 'Florida', 'next week', 'Florida', 'Florida', 'east coast', 'Deerfield Beach', 'Sebastian Inlet', 'the National Hurricane Center', 'Hurricane Dorian', '90 mph', 'approximately 40 miles', 'Wilmington', 'North Carolina', '15 mph', 'Carolinas', 'At least 20', 'North Carolina', 'Wilmington', 'Virginia Beach', '270,000', 'South Carolina', 'approximately 44,000', 'North Carolina', 'Tropical Depression Imelda', 'Texas', 'Evacuations', 'Beaumont', 'Freeport', 'Houston', 'Houston', 'CDT', 'nearly 79,000', 'Texas', '13', 'nearly 40 inches', 'between Thursday and Friday', 'The National Weather Service', 'Tropical Storm Nestor', '80 miles', 'Panama City', '17 mph', 'later today', '19 October', 'the Gulf Coast', 'Alabama', 'Georgia', 'two', 'Seminole', 'Lakeland', 'Florida', '12:00', '49 mph', '61 mph', 'Melbourne', 'Daytona Beach', 'daily', 'Nestor', 'today', 'Georgia', 'Carolinas', 'Sunday', '20 October', 'The National Hurricane Center', 'Tropical Storm Imelda', 'Imelda', 'at least the next couple of days', 'Houston', 'Imelda', '6 to 12 inches', 'Texas', 'Houston', 'Galveston', 'The National Weather Service', 'Houston', 'Tuesday', 'around 7 inches', 'around 6 million', 'Houston', 'Galveston', 'December 16', 'the A12 Genoa-Sestri Highway', 'December 19', '22:00 to December 20', '06:00', 'Genoa', 'A12', 'Genoa', 'December 13', 'A7', 'Serravalle-Genoa Highway', '22:00', 'December 17', 'December 18', 'Genoa Bolzaneto', 'the A7 Highway', 'Genoa', '01:15N–104:01E', 'Singapore', 'five', \"AKIJ GLOBE'\", 'three', 'Singapore', 'VTIS', 'January 2', 'the Hanjin Busan New Port', 'the Port of Busan', 'South Korea', '24 hours', 'December 31', 'the Port of Qingdao', '17:15', 'December 30', 'December 31', '03:00', 'December 31', '19', 'one', 'December 15', 'the Gulf of Guinea', '130 nautical miles', 'Lome Togo', '08.00', 'December 15', 'Luanda', 'only one', 'December 27', 'the Confederation of Truckers Association', 'Philippines', 'Navotas City', 'Manila', 'December 21', 'Navotas', 'January 1', 'the C-3 Road', 'North Bay Boulevard', '06:00 to 10:00', '16:00 to 20:00', 'the Northern Luzon Expressway Harbour Link Segment 10', 'C3 Road to Road 10', 'the Department of Public Works', 'Euston', 'London', 'West Coast', 'London Northwestern Railway', 'London', '19:00', 'December 25', 'the Port of Alexandria', 'Dekhaila Port', 'December 11', '3', '20 tons', 'Cubatao', '19:30', 'December 10', 'Rumo Logistica', 'Paulista', 'the Port of Santos', 'Railway', 'December 31', 'the Port of Dalian', 'December 31', 'December 29', '21:30', 'January 3', 'the Port of Shanghai', 'January 3', 'Hong Kong', 'Tuesday', 'Harbour City', 'Mong Kok', 'Kowloon Park', '09:00', '00:01', 'December 16', 'the Houston Ship Channel', 'December 16', 'German', 'Verdi', 'Rhenus Wesserport', '14:00', 'December 16', 'November 29', 'first', 'six-hour', 'the Port of Bremen', 'Germany', 'December 16', 'the Port of Busan', '0.5 day', 'the next 3-days', 'November 19', 'Port of Ningbo', 'between 02:00 and 23:00', 'November 18', 'November 18', '0.5 -1 day', 'Ningbo Beilun Container', 'the coming 3 days', 'the Port of Chittagong', '4-5 days', 'December 3', '11', 'December 9', 'the Port of Xiamen', 'around 0.5 day', 'early in the morning', 'November 21', 'Home', 'Home', 'the Road Transport Act', 'November 20', 'Bangladesh', 'November 20', 'the Transport Act', 'Sunday, November 17', 'the morning hours of November 20', 'Bangladesh', 'Khulna', 'Jessore', 'Kushtia', 'Tangail', 'Mymensingh and', 'Pabna', 'Dhaka-Chattogram', 'Dhaka-Sylhet', 'Dhaka-Tangail', 'the Chattogram Port', 'Intelligence', 'Resillience360', 'December 5', 'last night', 'the morning hours', 'December 5', 'December 4', 'the Port of Genoa', 'A26', 'A10', 'A7', 'December 11', 'Pier 2, Port of Durban', 'December 10', '77.5%', 'Japanese', 'Shinnanko', 'Minami-Konan', 'October 17', '4:20', 'about 1,400 square meters', 'Suminoe-ku', 'Osaka City', 'approximately two and a half hours', 'premises', 'approximately 2.5 km', 'Nanko Higashi Station', 'November 8', 'the Port of Valencia', 'November 24', 'Lima', 'the beginning of November', 'the weekend', 'weekdays', 'the South Pan American Highway', 'Monday to Friday', '6:00 am to 9:00 pm', 'Fines', 'the Pan American Highway', 'Sun', 'Pedro Miotta', 'Fifth Avenue', 'Antigua Panamericana Sur', 'Los Laureles', 'Los Cisnes', 'Fifth Avenue', 'Las Torres', 'Zarumilla', 'Trapiche Chillón', 'Túpac Amaru', 'Chimpu Ocllo', 'Central-Nicolás Ayllón Highway', 'Ramiro Prialé Highway', 'Sing Callao', 'Néstor Gambetta', 'Yellow Line', 'Av', 'Las Torres', 'North Pan American', 'South Pan American', 'Route of Avoidance', 'October 29', 'Chile', 'approximately 2,000', 'the Port of San Antonio', 'October 29 to October 30', '3', '2', '4', 'December 9', 'the Port of Le Havre', 'as of noon', 'December 9', 'since morning hours', 'Wednesday, December 11', 'the next few hours', 'October 24', 'October 23', 'Port Said East', 'Suez Canal Container Terminal', 'October 24', 'October 23', 'Port Said West', 'DCT Pier 1', 'the Port of Durban', '14:30', 'November 19', 'several hours', 'October 22', 'the Port of Le Havre', '08:00', 'October 23', 'November 28', 'Port of Dalian', 'the morning of', 'November 27', 'November 21', 'midnight', 'November 24', 'the morning of', 'November 25', 'the Genoa Voltri Terminal Europa', 'the middle of November', 'October 11', \"Genoa's\", 'Voltri Terminal Europa', 'October 13 to November 3', 'Le Havre', 'the Pont de Normandie', 'the fifth consecutive day', 'December 9', 'December 11', 'Pier 1, Port of Durban', '65%', 'December 5', 'the Port of Dalian', '04.00', 'December 3', 'December 11', 'the Port of Antwerp', 'December 9', 'Mexico City', 'IMO 9632210', 'October 25', \"Port of Dalian's\", '01:00 - 05:30', 'October 25', 'the morning hours', 'October 24', 'the coming hours', 'December 4', 'the Port of Hong Kong', 'the evening', 'December 5', 'the next day', 'morning', 'December 4', 'the Port of Yantian', 'the evening', 'December 5', 'the next day', 'morning', 'November 8', 'Tropical Storm Nakri', 'Quiel', 'about 380 kilometers', 'Coron', 'Palawan', 'the South China Sea', 'Vietnam', '110kph', 'Metro Manila', 'the coming hours', 'PAGASA', 'Batangas', 'Cavite', 'Laguna', 'Quezon', 'Rizal', 'Calabarzon', 'Aurora', 'Bataan', 'Central Luzon', 'Ilocos Norte', 'Ilocos Sur', 'La Union', 'Pangasinan', 'Ilocos', 'Occidental Mindoro', 'Mindoro', 'Palawan', 'Mimaropa', 'December 13', 'the Port of Qingdao', 'about 0.5 day', 'the next 3-days', 'January 15', 'London Gateway Terminal', 'Felixstowe Terminal', 'the Port of Felixstowe', 'February 24', 'the Port of Rotterdam', '08:00 to 15:45', 'February 23', '8-hour', 'noon', 'the late night', 'February 24', 'February 19', 'the Port of Rotterdam', '2 days', 'October 1', 'Hong Kong', 'at least 62', 'October 1', 'China', 'Causeway Bay', 'Tsing Yi', 'Coastal Road', 'Tsing Yi North Bridge', 'Tsuen Wan', 'earlier in the evening', 'the Houston Ship Channel', 'the weekend', '04:30', 'December 29', 'the Houston Ship Channel', '08:40', 'December 26', 'DCT Pier 2', '14:30', 'December 27', '12:27', 'December 27', '11:46', 'October 24', 'the Port of Shanghai', '0.5 days', 'October 27', 'the Port of Shanghai', '1 day', '0.5 days', '0.5 days', 'October 24', 'December 5', 'the Port of Ningbo', '0.5', '1.5 days', 'the morning of December 6', 'the afternoon', 'December 5', 'the Port of Qingdao', '0.5 days', 'December 12', 'the Port of Shanghai', '0.5 - 1 day', 'the next 3-days', 'November 28', 'Ningbo', '1-2 days', 'the coming 3 days', 'the previous week', 'November 28', 'the Port of Qingdao', '12-24 hours', 'the next 3 days', 'the past week', 'November 13', 'the Port of Ningbo', '1 day', 'the next 3 days', 'the Port of Hong Kong', 'about 12 hours', 'October 30', 'October 24', 'xiazhi channel', '07:30 to 10:40', 'October 23', 'October 23', 'the Port of Ningbo', 'around 1 day', 'the next 3 days', 'Port of', 'November 14', 'about 16:00', 'November 13', 'the Port of Durban', 'all day', 'November 14', '15', '16', 'the Port of Le Havre', 'December 10', 'December 9', 'December 11', 'the coming days', 'France', 'this week', 'October 18', '200', '08:00', 'October 18', 'Barcelona', '12-hour', '20:00', 'October 18', 'October 17', 'the Port of Barcelona', 'October 18', 'the Intersindical-CSC', 'around 50 percent', 'the Port of Barcelona', 'Catalonia', 'Supreme Court', '13 years', 'October 23', 'DCT Gdansk', 'Polish', '2 weeks', 'October 22', 'Polish', 'DCT Gdansk', 'non-Polish', 'December 4', 'the Port of Shanghai', '0.5 to 1 day', '1.5 days', 'the morning of December 6', 'the evening', 'December 4', 'three-day', '90 centimeters', 'New Hampshire', 'Pennsylvania', 'New York', 'New Jersey', 'the National Weather Service', 'December 3', 'Maine', 'New Hampshire', 'Massachusetts', 'November 28', 'Bayhead Road', 'Bluff', 'November 28', 'Pier 1', 'the Port of Durban', 'April 1', 'the Port of Durban', '21 days', 'the previous week', 'January 6', 'the Hong Kong Modern Terminal', '24 to 12 hours', 'the Port of Le Havre', 'December 23', 'December 13', 'December 4', 'three-day', '90 centimeters', 'New Hampshire', 'Pennsylvania', 'New York', 'New Jersey', 'the National Weather Service', 'December 3', 'Maine', 'New Hampshire', 'Massachusetts', 'November 28', 'the Port of Shanghai', '12 hours', 'the next 3 days', 'the past week', 'over 100', 'the Port of Chittagong', 'November 11', 'Cyclone Bulbul', 'the evening of', 'November 8', 'November 10', '36-hours', 'about a week', 'about 12,000', '10', 'about 104', 'November 28', 'the Port of Genoa', 'November 27', 'Thursday, November 28', 'A6 Savona-Turin', 'A26 Voltri-Gravellona', 'one', 'A10 Savona-Genova', 'A7', 'Genova-Milan', 'the morning hours of November 27', 'the Port of Genoa', 'the first and last hour', 'November 26 to December 1', 'October 29', 'Port of Genoa,', 'Italy', 'Fil-Cgil', 'Uiltrasport of the Port of Genoa', 'October 31', 'Victoria State', 'Daniel Andrews', 'Victoria', 'another 48 hours', 'the coming days', '23', 'Victoria', '13', 'more than 1.2 million', '244', 'Clifton Creek', 'tomorrow', 'early last week', 'Thursday', 'Abbeyard', '40 kilometres', 'Wangaratta', 'Evacuate Now', 'second', 'Evacuate Now', 'Buffalo River', 'Dandongadale', 'Merriang South', 'Mount Buffalo', 'Nug Nug', 'Mallacoota', 'Navy', 'East Gippsland', 'north-east Victoria', 'December 20', 'the Port of Shanghai', '12-24 hours', 'the next three days', 'January 14', 'Unite', 'Hutchison Ports', 'the Port of Felixstowe', 'January 16', '116', 'Christmas', 'Universal Tyres', 'Unite', 'Port of Felixstowe', 'Acas', 'January', 'Unite', '1,800', 'Universal Tyre', 'December 24', 'January 14', 'November 15', 'the Port of Ningbo', '12-24 hours', 'the next 3 days', 'thousands', 'Colombia', 'Ivan Duque', 'Cali', 'November 21', 'Colombia', 'Ivan Duque', 'Bogota', 'Barranquilla', 'Cartagena', 'Medellin', 'Cali', 'Bogota', 'the Plaza de Bolivar', 'Suba Avenue', 'Barranquilla', 'three', 'Esthercita Forero Park', 'Autonomous University', 'Rincon Latino', 'Paseo Bolivar', 'Cartagena', 'the Pedro de Heredia Avenue', 'FARC', 'December 4', 'three-day', '90 centimeters', 'New Hampshire', 'Pennsylvania', 'New York', 'New Jersey', 'the National Weather Service', 'December 3', 'Maine', 'New Hampshire', 'Massachusetts', 'October 31', 'Barcelona', 'October 30', 'Barcelona', 'CCOO', '48-hour', 'the Chilean Dockworkers Union', 'November 25', '26', 'November 27', 'the Port of Valparaiso', 'Maersk', 'MSC', 'the Port of San Antonio', 'the Port of Valparaiso', 'French', '2020', '15', 'The Organization of European Transporters', '40,000', '2 cents', 'December 6', 'the early morning', 'France', 'the second day', 'France', 'Le Havre and Fos', 'Saint-Omer', 'Boulogne', 'Fos-sur-Mer', 'Saint-Omer', 'October 24', 'Pier 1', '20.30', 'the previous day', 'the Port of Durban', '22.30', 'January 9', 'between 12 to 24 hours', 'the Port of Ningbo', 'About 12-24 hours', 'Beilun', '24 hours', 'Beilun', '3', 'the Meishan Container Terminal', 'the next 2 days', 'January 15', 'days', 'the Central Number 1 Union', 'S1PCE', '99', 'DP World', 'San Antonio', 'January 9', 'the Shanghai Guandong Container Terminal', 'between 12 to 24 hours', 'the next 2 days', 'December 19', 'the Port of Ningbo', '24-36 hours', 'the next 3 days', 'six', 'November 13', 'Greater Hunter', 'Shoalhaven-Illawarra', 'New South Wales', 'NSW', 'the Blue Mountains', 'Central Coast', 'NSW', 'At least four', 'NSW', 'bush', 'November 13', '50', 'Tropical Storm Kammuri', '326km', 'Manila', 'around 17kph', 'Philippines', 'the South China Sea', 'the coming days', '4', 'Philippines', 'Over 300,000', 'Luzon', 'Philippines', 'Manila', 'Nearly 340,000', 'November 13', 'Barcelona', 'France', 'two days', 'Catalan', 'nine', 'more than two days', 'Girona', 'AP-7', 'Spain', 'France', 'Spanish', '20,000', '15 million', 'November 15', 'the Port of Shanghai', 'China', '12 hours', 'November 15', 'the next 2 days', 'October 31', 'the Port Union of Chile', 'November 4', 'days', 'October 31', 'Vessel', 'Iquique, Mejillones', 'Antofagasta', 'Valparaiso', 'San Antonio', 'San Vicente', '6,000', 'October 23 following days', 'Chile', 'January 17', 'early morning hours', 'Nuremberg', 'hundreds', 'early morning', 'January 17', 'today', 'Bavaria, Lower Saxony', 'Bremen', 'Baden-Wuerttemberg', 'Berlin', 'Hesse', 'January 17', '11.00', '19.00', 'Strasse', '10,000', 'Nuremberg', '2,000', 'Hanover', '2,000', 'Bremen City', '500 to 1,000', 'Berlin', '1,000', 'Stuttgart', 'Hesse', 'the Port of Kiel', 'January 18', 'Strasse', '17', 'between 10.00 and 12.30', 'November 11', 'Umm Qasr', 'Basra', 'November 9', 'Qasr', 'nearly 10 days', 'Port of Jebel Ali', 'United Arab Emirates', 'one', 'Umm Qasar Port', 'approximately February 23, 2019', 'Olga Maersk', '8-9 days', 'Sydney', '907S.', 'the Vessel Operator', 'Sydney', 'Olga Maersk', 'Sydney', 'Cartagena', 'Colombia', 'Balboa', 'Panama', 'Operators', 'Olga Maersk', 'Manzanillo', 'Panama', 'Colombia', 'Panama', 'weeks 7 and 8, 2019', 'February 1', 'the Port of Ningbo', '1 to 1.5 days', 'Dutch', 'March 18', '24-hour', 'midnight', 'the Port of Rotterdam', 'the Port of Amsterdam', '700', 'Dutch', 'March 17', '24-hour', 'midnight', 'the Port of Amsterdam', 'the Port of Rotterdam', '700', 'September 24', 'the Port of San Antonio', 'More than six', 'Le Havre', 'September 12', 'the Port of Le Havre', '17:30', 'November 12', '100', '06:00', 'November 13', 'the Port of Durban', '16:30', 'approximately 09:00 this morning', 'April 4', 'Construction, Forestry', 'Mining and Energy Union', 'Brisbane', 'Melbourne', 'Fremantle', 'Sydney', 'the coming months', 'April 2', 'Port of Botany', 'DP World', 'Australia', 'April 4', 'Construction, Forestry', 'Mining and Energy Union', 'Brisbane', 'Melbourne', 'Fremantle', 'Sydney', 'the coming months', 'April 2', 'Port of Botany', 'DP World', 'Australia', '9,200', 'Vancouver', 'the Port of Singapore', 'February 18', 'the early hours of January 31', 'Shekou', 'China', 'Singapore', 'CGM', 'February 7', '4,515', '134', 'January 17', 'the Port of Shanghai', '0.5 day', 'the next 2-days', '1 day', 'August 26', 'the Port of Ningbo', '0.5-1 day', 'the next 2-days', 'January 17', 'the Port of Ningbo', '0.5', '1 day', 'the next 3-days', 'the Port of Yantian', 'around 0.5 day', 'March 21', 'Waigaoqiao', 'the Port of Shanghai', 'about 0.5 to 1 day', 'March 22', 'March 20', 'August 23', 'the Port of Shanghai', 'around 0.5', '1-day', 'the next 3-days', 'January 17', 'the Port of Hong Kong', 'about 1 day', 'the next 3-days', 'number 19', 'the Port of Ningbo', 'around 1 day', 'March 21', 'the Shanghai Guandong International Container', 'Yangshan Port', 'March 22', 'the Port of Shanghai', 'around 1 day', 'August 23', 'the Port of Ningbo', '6-hours', 'the coming two days', 'the Port of Hong Kong', 'around 0.5 day', 'April 11', 'the Port of Qingdao', '0.5 day', '05:00 to 16:00', 'April 14', 'January 9', 'the Port of Ningbo', '24-hours', '0.5-day', 'January 10', 'March 27', 'the Port of Ningbo', '1-2 days', '2-days', '18:00', 'March 27', 'Port of Ningbo', 'the Port of Ningbo', '1-day', 'the next 3-days', 'the morning of March 9 to the afternoon', 'the Port of Ningbo', 'about 0.5', '1.5 days', 'March 19', 'the Port of Hong Kong', '0.5 day', 'October 11', 'the Port of Shanghai', '0.5 days', 'the next 3-days', 'February 13', 'the Port of Shanghai', 'around 0.5 day', 'Yangshan Shengdong', 'the next three days', 'March 8', 'Shanghai', 'March 6 to the next day', '1-day', 'October 11', 'the Port of Busan', '12 hours', 'October 11', 'September 25', 'the Port of Busan', '12 hours', '24-36 hours', 'the start of the week', 'last weekend', 'September 20', 'the Port of Ningbo', '12-24 hours', 'September 20', 'October 1', 'Ningbo', '24-36 hours', \"Typhoon Mitag's\", 'May 2', '48 hours', 'the Port of Yangshan', 'the next 2 days', 'September 11', '0-12 hours', 'September 11', 'the next three days', 'September 25', 'the Port of Hong Kong', '12 hours', 'September 25', 'the next 2 days', 'September 5', 'the Port of Hong Kong', '12 hours', 'September 5', 'September 5', 'the Port of Qingdao', '12 hours', 'the coming 3 days', 'September 11', 'the Port of Ningbo', '12-24 hours', 'the next 3 days', 'October 1', '48 hours', \"Typhoon Mitag's\", 'August 30', 'the Port of Hong Kong', 'around 6 hours', '0.5 days', 'the coming two days', 'October 18', 'the Port of Shanghai', '0.5 days', 'the next 3 days', 'October 9', 'the Port of Saigon', 'around 1.5', '2 days', 'October 9', 'October 23', 'the Port of Felixstowe', '48 hours', 'February 5', 'the Port of Ningbo', 'around 1 day', '2 days', 'February 6', 'February 4', 'April 10', 'the evening', 'April 9', 'the Port of Busan', '0.5', '1 day', 'March 1', 'Port Said', 'the coming hours', 'the beginning of the week', 'March 22', 'the Port of Busan', 'May 21', 'morning', 'March 18, 2019', 'the Port of Barcelona', 'six days', 'The Transport Association of the Port of Barcelona', 'Sintraport', 'Tuesday', 'February 1', 'the Port of Shanghai', 'around 0.5', 'September 25', 'the Port of Savannah', '12-24 hours', 'Hurricane Dorian', 'APM', 'March 25 and 27', 'March 13', '09:40 - 11:45', 'March 12', '04:00 - 16:00', 'March 14', 'around 12 hours', 'September 5', 'the Port of Sydney', 'the last 10 days', 'at least the end of next week', 'January 25', 'the Port of Ningbo', 'January 25', '26', 'April 25', 'the Port of Ningbo', '72 hours', 'earlier this week', '60 hours', 'April 26 and 27', 'January 30', 'the Port of Los Angeles', 'Long Beach', '3.31 days', '2.5-3 day 2018', '7.5-day', 'late 2018', 'Southern California', 'the holiday season', 'the Port of Long Beach', 'the Port of Oakland', 'December 2018', 'the beginning of February 2019', 'the Port of Durban', 'April 23', '2', 'the week', 'January 3', 'Epiphany', 'January 6', 'the Port of Algeciras', 'at least around', '24-hours', 'March 22', 'the Port of Long Beach', 'March 22', 'up to 8 hours', 'Tokyo', 'Aomi Terminal', 'April 30 to May 6', 'Shinagawa', 'week public holiday', 'two', 'Aomi', 'September 17', 'the Port of Busan', '12 hours', 'September 16', \"last week's\", 'typhoon', 'September 17', 'February 13', 'the Port of Shanghai', 'February 15', 'around 0.5 day', 'Italian', 'late February 21', 'Gioia', 'Italy', '19:00', 'February 21', 'Italian', 'Bari', 'Ancona', 'Napoli', 'about 200', 'last week', '500', 'Medcenter', 'this week', 'EUR', '120 million', '2.4 million', '4 million', 'this week', 'days', 'March 25', 'Calisto', 'IMO 9306067', 'Claudia', 'Interlink Affinity', 'March 24', '200kg', 'Claudia', 'Calisto', 'Brunsbuettel', '09:00', 'March 24', 'Brunsbuettel', 'Kiel Cannel', 'Hamburg', 'Germany', 'Gdynia', 'Poland', 'Calisto', 'Brunsbuettel', 'February 8', 'CSC', 'FGTB', 'CGSLB', 'the Port of Antwerp', 'PSA', '06:00', 'February 13', 'February 14', 'August 29', 'China', 'about a week', 'Ho Chi Minh City', 'Vietnam', 'August 22', 'the Cai Mep International Terminal', '14,000', 'Port Klang', 'Malaysia', 'Cai Mep', 'February 5', 'the Port of Colombo', 'February 5', 'more than 6,000', 'unions', 'Tuesday', 'the Port of Colombo', 'September 17', 'the South Asia Gateway Terminals', 'SAGT Terminal', 'the Port of Colombo', 'Sri Lanka', '12-24 hours', 'January 2', 'New Jersey', 'the Lincoln Tunnel', 'the Hudson River', 'New York', 'New Jersey', 'New Jersey', 'Port of Dalian', 'the morning of March 5', 'the evening of the next day', 'March 13', 'the Port of Shanghai', '22:00', 'March 13', '16:00 of the next day', 'April 26', 'the Port of Shanghai', 'April 24 to 17:00 of the next day', '1 to 2 days', 'December 10', 'the DP World Terminal Southampton', '20:15', '15:00', 'December 10', 'March 19', 'Australia', 'Up to 1,800', 'Fremantle Terminal', 'March 19', 'Port Botany Terminal', 'March 22', 'Brisbane Terminal', 'March 22', 'Melbourne Terminal', 'March 23', 'March 19 to 23', 'DP World', 'one-hour', 'Fremantle', '24-hour', 'February 17', 'Container Terminals', 'Brisbane', 'Fremantle', 'Melbourne', 'Sydney', 'DP World Australia', 'the Fair Work Commission', 'FWC', 'the Maritime Union of Australia', 'five-day', '1,800', 'April 24', 'Westport Terminal', 'March 25 to April 30', 'West Port', 'B20', 'B21', 'April 18 – April 23 (6 days', '600', 'B24', 'April 24 – April 30 (7 days', '400', 'April 1', 'Dublin Express', 'Global Marine New York Container Terminal', 'Staten Island', 'the Goethals Bridge', 'March 28', 'April 2', 'January 4', 'the Port of Ningbo', '24-hours', 'January 5', 'Xiaozhimen channel', 'the afternoon of January 3', 'about 2-hours', 'March 6', 'the Port of Shanghai', '0.5 day', 'the next 2-days', 'the evening of March 5', 'August 20', 'Xiazhimen', 'August 20', 'midnight', 'the Houston Ship Channel', 'the past week', '133 hours', 'the past two weeks', '17:30', 'March 13', 'this week', 'US', 'AdvanSix', 'Frankford', 'Pennsylvania', 'earlier this week', 'Houston', 'October-March', 'humid Gulf air', 'October 11', 'the Port of Jeddah', 'the coming days', 'February 27, 2019 the end', 'Gallina Blanca', 'Sant Joan Despí', 'Barcelona', 'Ballobar', 'Huesca', 'Huesca', '60 days per year', '42', 'monthly', 'between 58 and 61 years', 'June 19', 'South Korean', 'Hanwha Total', 'yesterday', '1.09 million tons', 'Daesan', 'Hanwha Total', 'March 27', 'March 23 to May 28', 'May 6', 'Hanwha Total', 'June 8', 'yesterday', 'May 8', \"Hanwha Total's\", 'Daesan', 'March 23', 'Hanhwa Total', 'March 6', 'Port of Houston', 'more than 24', 'March 6', 'Port of Savannah', 'more than 24', 'October 16', 'Saitama', 'Tochigi', 'Nagano', 'Niigata', 'Hyogo', 'Wakayama', 'Fukushima', 'Miyagi', 'Honshu', 'Hokkaido', 'Typhoon Hagibis', 'at least 74', 'more than 200', 'An estimated 5 million', 'over 70,000', 'Tokyo', 'Nagano', 'Ibaraki', 'Saitama', 'Tochigi', 'Kanto', 'about 52', 'the eastern half', 'Honshu', 'March 13', 'the Port of London', 'the day', 'the day', 'this afternoon', 'the day', 'March 22', 'the Port of Algeciras', 'the day', 'April 23', 'the Port of Jeddah', 'Saudi Arabia', 'April 20', 'April 23', 'September 12', '22', 'Greenpeace USA', 'the Fred Hartman Bridge', 'La Porte', 'Baytown', 'the Houston Ship Channel', 'September 12', '11', 'United States Coast Guard', 'Sector Houston-Galveston', '06:30', 'September 12', '11', '29-foot', 'Response Boat', 'Harris County', 'the Houston Ship Channel', 'September 6', 'Hurricane Dorian', 'Cape Hatteras', 'North Carolina', '8:35', 'Friday', 'morning', 'Carolinas', 'the US National Hurricane Centre', 'Edisto Beach', 'Poquoson', 'Pamlico', 'Albemarle Sounds', 'Neuse', 'Pamlico Rivers', 'Hampton Roads', 'North of the Savannah River', 'North Carolina-Virginia', 'Pamlico', 'Albemarle Sounds', 'Mouth', 'Savannah River', 'North Carolina-Virginia', 'Fenwick Island', 'Chesapeake Bay', 'Drum Point', 'Woods Hole to', 'Sagamore Beach', 'Nantucket', 'Martha’s Vineyard', 'Georgia', 'South Carolina - Berkeley', 'Beaufort', 'Charleston', 'Colleton', 'Horry', 'Georgetown', 'Jasper', 'North Carolina', 'Brunswick', 'Carteret', 'Currituck, Dare,', 'New Hanover', 'the Port of Shanghai', 'January 25', '0.5 days', 'August 29', 'the Port of Durban', '4,218', '874', 'April 2', 'Brisbane', 'Melbourne', 'Fremantle', 'Port of Botany', '24-hour', '06:00', 'April 4', 'April 10', 'Port of Fuzhou', 'the night of April 8 to the afternoon', 'the next day', 'around 0.5', 'April 10', 'Port of Xiamen', 'the midnight of April 9 to noon', 'April 7', 'around 0.5', 'August 23', 'March 1', 'the Port of Ningbo', 'the morning of March 2 to the next day', 'Meishan', 'Meishan', 'February 28 and March 1', 'the weekend', 'February 13', 'the Port of Ningbo', 'February 15', 'February 19', 'Port of Qingdao', '19:00', '12:00', '19:00', '12:00', 'the New Port Hanjin Terminal', 'around 0.5 day', 'April 5', 'Lyondell Basell Industries', '263,776 barrel', 'Houston', 'Gulf Coast', 'the previous week', 'March 22', 'Mitsui & Co’s Intercontinental Terminals Deer Park', 'about 9 percent', 'the previous week', '14 percent', 'April 2', 'the U.S. Coast Guard', 'Lyondell', 'Lyondell Basel Industries', 'olefins', 'polyolefins', 'May 2', 'Mitsui', 'Intercontinental Terminal Company', '3', '12', 'ITC', 'ITC', 'March 22', 'ITC', 'Deer Park', 'the Houston Shipping Channel', 'ITC', 'Deer Park', 'Gulf Coast', 'the Port of Colombo', '290', 'Colombo', 'April 21', 'February 5', 'France', 'the Port of Le Havre', 'the next couple of hours', 'Rouen and Dieppe', 'the Port of Fos-sur-Mer', 'more than 24 hours', 'October 2', '24-hour', 'Piraeus, Rafina', 'Lavrion', 'Greece', 'Four', 'Greek', '00:01', '24:00', 'October 1', 'the Panhellenic Seamen Federation', '24-hour', 'April 17', 'the Port of Hong Kong', 'around 1 day', 'April 16', 'April 17', 'May 5', 'Iran', 'the Suez Canal', 'the Red Sea', 'April 30 morning', 'The National Iranian Tanker Company', 'Saudi Arabia’s', 'Jeddah', 'October 5', 'India', 'Jawaharlal Nehru Port Trust', 'JNPT', 'October 3', 'October 3', 'October 1', 'one-hour', 'Italian', 'Uiltrasporti', 'Genova', '272/99', '81/08', 'Uiltrasporti', 'Genova', '1-hour', 'October 1', '06:00 - 07:00', 'the Port of Trieste', 'Genoa', 'March 20', \"Durban Container Terminal's\", 'Pier 1', '3:30 PM', 'March 20', 'Durban', 'Pier 1 Container Terminal', 'the Port of Durban', '14:00', 'February 8', 'October 10', 'DCT Pier 2', 'October 10', '02.00', '06.30', 'the same day', 'Pier 1', '22:30', 'October 9', 'October 10', 'October 2', 'the Port of Shanghai', 'Typhoon Mitag', 'October 1', '17:00', 'October 2', 'World Southampton', '05:00', 'September 10', '05:30', '07:30', 'March 12', 'the Port of Southampton', 'between 07:50 and 15:00', 'the day', 'March 13', 'the Port of Southampton', 'between 09:30 and 15:00', 'the day', 'March 14', 'the Port of Southampton', '09:15 to 15:00', 'February 22', '08:00', '9-hour', 'the Port of Southampton', 'United Kingdom', 'October 3', 'Pier 1', 'the Port of Durban', '01:00', 'October 3', '02.00', 'January 25', 'the Port of Durban', 'the Port of Durban', 'January 25', '7 PM', 'Pier 1', '10 PM', '10 PM', '6 PM', 'January 26', 'Durban', 'August 28', 'Pakistan', 'three', 'Karachi', 'August 28-31', 'Pakistani', 'a day earlier', 'Indian', 'four-day', 'September 1', 'Karachi', 'Indian', 'Bharatiya Janata', 'BJP', 'Twitter', 'India', 'the Port of Karachi', 'the Arabian Sea', 'Pakistan', 'Pakistani', 'the morning of July 16', 'February 27', 'India', 'Pakistan', 'the Kashmir region', 'this month', 'Indian', 'Narendra Modi', 'Kashmir', 'Pakistan', 'March 8', 'the Bureau of Customs', 'Philippines', 'Manila', 'POM', 'the Manila International Container Port', 'MICP', 'POM', 'MICP', 'SPTL', 'BOC', 'POM', 'MICP', 'SPTL', '72-hour', 'Manila', 'October 15', '2', 'the Port of Durban', 'Pier 1 Waterside and Landside Operations', '14:45', 'October 15', 'Pier 2 Landside', '14:15', '15:00', 'October 15', 'Port of Durban', '18:00', 'February 17', '12:30', 'the day', 'Pier 1', 'Port of Durban', '20.15', 'September 24', '06.00', 'the next day', 'Pier 2', '108', '203', '13:00', 'September 23', '202', 'January 11', 'Pier 2 Container Terminal', 'the Port of Durban', '22:10', 'January 10-12', 'Port Elizabeth', 'Coega', 'February 21', 'Xiazhi', 'a few hours on the morning', 'February 20', 'March 20', 'Australia', 'Australian', 'one hour', 'Brisbane Terminal', 'March 24, 2019\\n', 'Brisbane', 'the Old Terminal', 'Up to 1,800', 'Australia', 'DP World', 'March 20', 'Australia', 'Australian', 'one hour', 'Melbourne Terminal', 'March 23, 2019\\n', 'Up to 1,800', 'DP World', 'March 20', 'Australia', 'Australian', 'one hour', 'March 22, 2019\\n', 'Up to 1,800', 'Australia', 'DP World', 'September 3', 'eThekwini', 'early Sunday morning', 'August 25', 'Metallica Chemicals', 'Cato Ridge', 'Durban', 'South Africa', 'Metallica Chemicals', 'March 27', 'Port of Alexandria', 'March 25', 'October 4', 'the Port of Busan', 'October 2', 'Typhoon Mitag', 'September 6', 'the Port of Charleston', 'September 6', 'September 7-8', 'The Coast Guard Captain', 'Port', 'Port Condition Zulu', 'Charleston', 'Hurricane Dorian', '12 hours', 'the Port of Chittagong', 'the afternoon', 'May 4', '30-hour', 'Cyclone Fani', 'last week', 'around 17:00', 'the previous days', 'the holy week', 'May 5', 'June 4', 'more than 24', 'March 11', 'the Port of Colombo', '1 to 2 days', '4', 'March 18', 'two weeks', 'September 25', 'the Port of Freeport', 'September 20', 'the next weeks', 'April 26', 'Port of', 'Fuzhou', 'April 25', '12:30', '12-hours', 'the evening', 'April 25 to the next day', 'morning', 'October 11', 'the Port of Kobe', '12:00', 'October 11', 'October 13', 'Typhoon Hagibis', 'October 1', 'Tropical Storm Narda', 'the Port of Manzanillo', 'Mexico', 'September 29', 'September 30', 'October 11', 'Nagoya', 'noon', 'October 11', 'October 13', 'dawn', 'October 14', 'October 2', 'the Port of Ningbo', '18:00', 'September 30', 'Typhoon Mitag', 'the evening hours', 'October 2', 'September 23', 'the Port of Ningbo', 'the morning of September 21 to the evening', 'September 22', 'March 6', 'the evening of March 6', 'the next day', 'April 11', 'the Port of Ningbo', '1.5', '2-day', '22:30', 'April 9', 'May 9', '0.5 to 2 days', 'the Port of Ningbo', 'the coming days', 'October 11', 'Osaka', '12:00', 'October 11', 'October 13', 'Typhoon Hagibis', 'the Port of Paradip', 'Cyclone Fani', 'Odisha', 'May 3', '14', 'Kolkata', 'Bangladesh', 'later this week', 'April 26', 'the Port of Qingdao', '1.5 days', 'April 25', 'November 21', 'Port of San Antonio', 'Chile', 'November 19', 'September 5', 'the Georgia Port Authority', 'the Port of Savannah', '06:00', 'September 6', 'September 4', 'the Port of Savannah', 'Georgia', 'up to 72 hours', 'Hurricane Dorian', 'Savannah', 'October 11', 'the Port of Tokyo', 'today', 'Japanese', 'October 13', 'afternoon', 'October 14', 'Golden', 'Week holiday period', 'April 27-', 'May 6', 'Port of Tokyo', 'April 30', 'May 6', 'the next day', 'April 26', 'Port of Xiamen', 'April 25', '04:00', '24-hours', 'October 11', 'Yokohama', 'the evening', 'October 11', 'October 13', 'dawn', 'October 14', 'April 17', 'the Port of Le Havre', 'France', 'about 3 hours', 'January 17', 'two', 'Sydney', 'Brisbane', 'January 17', 'Hutchison Ports at Port Botany', 'Sydney', 'the Port of Brisbane', 'five months', '30 minutes to 24 hours', 'the coming weeks', 'Taiwan', 'April 18', 'Provincial Highway 8', 'Kuanyuan', 'Taroko Gorge', 'Hualien', 'at least April 17', 'Earlier today', '6.1', 'approximately eight miles', 'Hualien City', 'Taiwan', 'the Philippine Sea', 'at least 17', '15', 'Taipei', 'At least two', 'Taipei', 'March 6', '2.50 p.m.', 'MSC Zoe', 'the Eurogate Terminal', 'the Strom Quay', 'Bremerhaven', 'February 5', 'Kaliningrad', 'ETA', 'March 9, 8 a.m.', '342', 'Ems', 'Dutch', 'March 18', 'Grande Roma', 'March 17', 'Antwerp', 'Belgium', 'Southampton', 'United Kingdom', 'March 17', 'March 18', '2', 'the Port of Southampton', 'UTC', 'September 11', 'the Port of Tokyo', 'Typhoon Faxai', 'January 15', 'Port of Qasim', 'D-Chowk', 'Islamabad', 'Karachi Press Club', 'January 10', '109 days', \"July through November 2018's\", 'the Port of Qasim', 'the Montreal Gateway', 'the St. Lawrence River', 'Quebec', 'February 15', 'the Port of Montreal', '03:20', 'DP World Southampton', 'April 5', 'August 22', 'Ningbo Port', 'XiaZhi', 'August 22', 'about 5 hours', '10 hours', 'February 5', 'seven days', 'three months', 'the Port of Colombo', 'September 23', 'Beaumont', 'Texas', 'Beaumont', 'Port Arthur', 'the Gulf of Mexico', 'the Houston Ship Channel', 'the Port of Houston', 'the Gulf of Mexico', 'the San Jacinto River', '4', 'Houston', '121', '134', 'the U.S. Coast Guard', 'March 19', 'Sindestiva', 'the Port of Santos', 'week', 'March 19', 'March 1', 'the Port of Santos', 'March 1', 'March 8', 'Libra', 'Santos Brasil', 'Deicmar', 'Bandeirantes', 'Sindestiva', 'February 19', 'Sindestiva', 'a 3rd week', 'Brazil', 'Royal Enfield', 'Oragadam', 'Chennai', '3,000', 'February 13', 'Oragadam', 'about 28,000', 'Royal Enfield', 'September 24 to November 12, 2018', 'Royal Enfield', 'Indian', 'March 7, 2019', 'Thursday, March 7', '2:00 p.m.', 'the Springs Window Fashions', '20 days', '16 percent', 'last night', '20', 'three', 'Springs Window Fashion', 'Ciudad Victoria', 'January 29', 'the Port of Rotterdam', 'the evening of', 'January 27', 'January 28', 'January 28', 'January 17', 'Port of Gdansk', 'January 16', 'the Port of Dalian', 'the midnight of January 15 to late night', 'January 17', 'the Port of Fuzhou', 'the evening of', 'January 16', 'January 18', 'January 3', 'the Port of Fuzhou', 'the morning', 'December 30, 2018', 'the evening of January 3', 'at least 24', 'the midnight of March 7', 'the late evening', 'August 20', 'Port of Durban', 'South Africa', 'the afternoon', 'August 21', 'the late afternoon', 'August 22', 'August 19', 'March 8', 'the morning of March 10', 'Port of Dalian', 'March 21', 'March 22', 'the Port of Qingdao', 'October 15', '1', '2', '19:55', 'October 15', 'BNSF', 'Darling', 'Arizona', '14', 'Los Angeles', 'Chicago', 'Amtrak', 'September 21', 'the Port of Chennai', 'Container Freight Stations', 'CFS', 'INR', 'USD 14.08', 'EUR', '12.79', 'twenty-foot', 'CFS', 'the Trailer Owners Association', 'September 19', 'the Port of Chennai', 'the All Trailer Owner’s Association', 'September 16', '3:30am', 'April 29', 'Matfield Green', 'Kansas', 'Minneapolis', 'the Ohio Valley', 'Columbus', 'Long Beach', 'Savannah River', 'Edisto Beach', 'South Carolina', '36 hours', 'Italian', 'Filt Cgl', 'Fit Cisl', 'Uil Trasporti', '24 hours', 'January 14', 'EU', '3.5 tons', 'that day', 'Genoa', '48 hours', 'Morandi', 'French', 'October 14', 'October 14-15', 'Morocco', 'Morocco', 'the Port of Tanger Med', 'Guerguerat', 'September 6', 'South African', 'South Africa', 'Mozambique', 'South Africa', 'Botswana', 'Zambia', 'South Africa’s', 'Cyril Ramaphosa', 'South Africa', 'five', '189', 'Alexandra', 'Cape Town', 'September 3', 'the Western Cape', 'Eastern Cape', 'KwaZulu-Natal', 'South Africa', 'Mew Way', 'N7', 'Piekenierskloof Pass', 'M2', 'Denver', 'N12', 'Johannesburg', 'Witbank', 'Two', 'Montclair', 'Durban', 'the morning hours of September 2', 'Waltloo Road', '11', 'Richards Bay Harbour', 'September 1', 'Zambia', 'Namibia', 'N2', 'N3', 'September 21', 'the Port Houston Container Terminal', 'business hours', 'September 21', '13:30', 'September 20', 'Tropical Depression Imelda', 'September 5', 'around 11:00', 'the Presidente Dutra Highway', 'Rio de Janeiro', 'Barra Mansa', 'Barra Mansa', 'September 4', 'the Presidente Dutra', 'Presidente Dutra', 'Sao Paulo', 'September 4', 'the Supreme Federal Tribunal', 'Santos', 'Bolsonaro', 'Curitiba', 'Sao Jose', 'Pinhais', 'Parana', 'Brazil', 'the coming days', 'weeks', 'Dutch', 'Svitzer Euromed', 'late April 15', 'the Port of Amsterdam', 'Ijmuiden', 'May 10', 'the evening hours', 'last night', 'Amsterdam', 'Iskes', 'Svitzer Euromed', 'Danish', 'Amsterdam', 'Rotterdam', 'Typhoon Mitag', 'Putuo District', 'Zhoushan City', 'Zhejiang Province', 'October 2', '108', 'Mitag', '18,741', 'Tropical Storm Risk', 'Korean', 'Japan', 'China', 'second', 'four', 'October 1', 'Shanghai', 'Zhejiang', 'Fujian', 'Jiangsu', 'Danube', 'IMO 9674517', 'the Suez Canal', 'April 19', 'Ein El Sokhna Port', 'Danube', 'the Suez Canal', 'Istanbul', 'Turkey', 'Jeddah', 'Egypt', '17:15', 'April 19', 'four', '19:00', 'April 20', 'Suez', 'an hour later', 'the same day', 'March 1', 'the Shanghai East Container Terminal', 'Waigaoqiao', 'the Port of Shanghai', '36-48 hours', 'March 2-3', 'October 15', 'the Port of Ningbo', 'around 1 day', '3-days', 'March 27', 'the Port of Hong Kong', '0.5', '1 day', 'March 1', 'the Shanghai Guandong International Container', 'Yangshan Port', 'around 12 hours', 'March 2-3', 'January 9', 'the Port of Shanghai', 'about 0.5', '1-day', 'the evening of January 10', 'the morning of', 'January 12', 'March 27', 'the Port of Shanghai', 'around 1.5 days', '2-days', '18:00', 'March 27', 'April 11', 'around 0.5', 'April 14', 'January 9', 'the Port of Hong Kong', '3-days', 'the morning of January 8', 'May 3', 'Port of', 'Hong Kong', '1 day', 'May 4', 'the current 0.5 days', 'May 3', 'the Port of Qingdao', 'around 0.5 day', 'January 4', 'the Port of Shanghai', '24-hours', 'the next three days', 'May 9', 'the Port of Busan', 'around 0.5 day', 'April 17', 'the Port of Busan', '0.5 day', 'February 4', 'the Manila International Container Port', 'Manila', 'mid-January 2018', 'Batangas Port', 'Asian', '90-95 percent', '5-6 days', 'February 8', '108', 'Pier 2,', 'Port of Durban', 'the afternoon', 'February 8', 'the morning', 'February 14', 'IG Metall', 'Germany', 'this week', 'two weeks ago', 'IG Metall', '6 percent', '72,000', 'Germany', 'February 18', 'February 14', 'ThyssenKrupp', 'Finnentrop', 'Earlier this week', 'Edelstahlwerke', 'Siegen', 'Mannesmann', 'ArcelorMittal', 'Bremen', 'Last week', 'ThyssenKrupp', 'Dortmund', 'Eichen', 'Ferndorf', 'Salzgitter', 'Ilsenburg', 'Peine', 'Arcelor Mittal', 'Duisburg', 'HKM', 'Hüttenheim', 'Sona BLW Präzisionsschmiede GmbH', 'Remscheid', 'Leistritz Turbinentechnik GmbH', 'Remscheid', 'Radio Frequency Systems', 'Nexans', 'Hanover', 'Bosch in Salzgitter', 'March 12', 'IG Metall', 'Germany', 'February', 'IG Metall', '6 percent', '72,000', 'Germany', 'March 16', 'Arcelor Mittal', 'Eichen', 'Ferndorf', 'Deutsche Edelstahlwerke', 'Geiswald', 'Peine', 'Georgsmarienhütte GmbH', 'Georgsmarienhütte', 'Thyssen-Krupp', 'ArcelorMittal', 'Krupp Mannesmann', 'Port Said East', 'Egypt', 'September 1', 'August 28', 'March 14', 'Busan BNCT', '60 percent', 'April 2', 'the Port of Alexandria', 'March 30', 'March 30', 'the Red Sea Port Authority', 'Sharm al-Sheikh', 'the Alexandria Port Authority', 'Alexandria', 'Dekheila', 'Alexandria', 'Dekheila', 'Sharm al-Sheik', 'between 22 and 28', 'between 3 and 4 meters', 'April 2', 'the Port of Dekheila', 'March 30', 'March 30', 'the Red Sea Port Authority', 'Sharm al-Sheikh', 'the Alexandria Port Authority', 'Alexandria', 'Dekheila', 'Alexandria', 'Dekheila', 'Sharm al-Sheik', 'between 22 and 28', 'between 3 and 4 meters', 'May 3', 'the Port of Ningbo', '24 hours', 'last week', 'May 4', 'Texas', 'Imelda', 'five', 'Friday, September 20', 'two', 'Beaumont', 'Houston', 'the weekend', 'September 28', 'Greg Abbott', '13', 'Brazoria', 'Chambers', 'Galveston', 'Hardin', 'Harris', 'Jasper', 'Jefferson', 'Matagorda', 'Montgomery,', 'Newton', 'Orange', 'San Jacinto', 'Chambers County', 'Winnie', 'Harris County', 'Houston', 'Jefferson County', 'Beaumont', 'September 25', 'Jasper', 'Jefferson', 'Hardin', 'Hardin', 'Jefferson', 'At least ten', 'September 19', 'over 15 inches', 'three days', 'at least 50 inches', 'TC Energy', 'Cushing', 'Oklahoma', 'Nederland', 'Texas', 'Friday, September', '20', 'Winnie', 'at least 200', 'approximately 400', 'I-10', 'Beaumont', 'Winne', 'only one', 'Houston', 'over 1,700', '323', 'three', 'Spring', 'over 100', 'at least 60', 'Huffman', 'Hundreds', 'Humble', 'Kingwood', 'Jefferson County', 'roughly 40 inches', '72-hour', 'The Green Pond Gulley Levee', 'Beaumont', '250', 'Galveston County', 'Island Transit', 'Dial-A-Ride', 'around 7,000', 'The Teachers Union', 'today', '27 March', '25 March', 'U.S.', 'the Port of Newark', 'New Jersey', 'March 16', 'around 1 million pounds', '454 metric tons', 'China', 'African', 'Chinese', 'The US Customs and Border Protection', 'CBP', 'more than 50', 'the past few weeks', 'CBP', 'Chinese', 'English', 'Thursday', 'the United States', 'Cairo', 'US', 'Egypt', 'Demonstration Alert', 'U.S.', 'Cairo', 'Egypt', 'September 26, 2019', 'Cairo', 'Egypt', 'Friday, September 27', 'U.S.', 'Assistance', 'Cairo', 'Egypt', 'Consular Affairs', '888-407-4747', '202-501-4444', 'Egypt Country Information', 'Safe Traveler Enrollment Program', 'Cairo', 'Alexandria', 'Giza', 'Damietta', 'Port Said', 'El-Mahalla El-Kubra', 'September 20-21', 'Egypt', 'the coming days', 'some 1,200', 'last week', 'Egypt', 'Cairo', 'last week', 'pro-Sisi', 'September 27', 'October 9', 'Discher Street', 'Hackemann Avenue', 'the Port of Charleston', 'October 9 through October 18', '17:00', 'Charleston', 'SC', 'Leatherman', 'the Port of Charleston', 'Vincent Thomas Bridge', 'Port of Long Beach', '17 January', 'Washington', 'D.C.', 'tonight', '22 January', 'Constitution Avenue Northwest', '17th Street Northwest', 'Constitution Avenue Northwest', 'New York Avenue', '3501 Pacific Avenue', 'Atlantic City', 'Arlington Boulevard', 'South Manchester Street', '8 January', 'Amazon', 'Woodbridge Township', 'today', 'Exit 12', 'the New Jersey Turnpike', 'ATM', 'Houston', '6 February', 'Westheimer Road', 'Brooklyn', 'New York City', 'Ocean Avenue', 'Parkside Avenue', 'At least two', 'the Port Authority Bus Terminal', 'New York City', 'Thursday', 'morning', 'the Belt Parkway', 'Brooklyn', 'New York City', 'Tuesday', 'morning', 'Bergen Beach', 'Interstate 278', 'the Verrazzano-Narrows Bridge', 'Staten Island', '17th Avenue', 'today', '29 August', 'the Grand Central Terminal', 'New York', 'hundreds', 'the Port of Los Angeles', 'today', 'today', '20 March', 'Freeport', 'the Canal Street Station', 'New York', 'tonight', 'the Intercontinental Terminal Co', '1943', 'Independence Parkway', 'Deer Park', 'Houston', 'the Staten Island Ferry Terminal', 'the Financial District', 'New York City', 'today', 'San Antonio', 'Oakland', 'today', '1 April', '16th Avenue', 'Interstate 880', 'Charleston', 'Lockwood Drive', 'Wentworth Street', 'Barre Street', 'Beaufain Street', 'Barre Street', 'Lockwood Drive', 'Charleston', 'midnight', '29 November', '6 December', \"the 'Fridays\", 'New York City', 'Philadelphia', 'Washington', 'D.C.', 'Greenpeace', 'the Fred Hartman Bridge', 'Thursday', 'morning', '12 September', 'La Porte', 'Baytown', 'Trump', 'one', 'the Houston Ship Channel', '24 hours', 'early morning', 'the Fashion District', 'Los Angeles', 'Sunday', 'up to six', '1100', 'East 11th Street', '2019', 'Los Angeles Marathon', 'Sunday', '24 March', 'approximately 24,000', 'thousands', '06:30 PDT', 'Dodger Stadium', 'Hollywood', 'Beverly Hills', 'Santa Monica Pier', 'early in the morning', 'Trump', 'Saturdays', '19 October to 16 November', '19 October', 'Santa Monica Pier', 'California', 'Union Square', 'New York City', '26 October', '2 November, 9 November', '16 November', 'the United States', 'Friday', '6 December', 'San Diego', 'Orlando', 'Boston', 'Phoenix', 'Sacramento', 'Nashville', 'Kansas City', 'Saint Paul', 'Minneapolis', 'Berkeley', 'Fort Lauderdale', 'Colorado Springs', 'Chicago', 'Denver', 'New Orleans', 'New York City', 'Washington', 'D.C.', 'Houston', 'Philadelphia', 'Atlanta', 'Miami', 'the United States', 'Friday', '20 September', 'New York City', 'Philadelphia', 'Atlanta', 'Miami', 'Washington D.C.', 'New Orleans', 'Minneapolis', 'Oklahoma City', 'San Francisco', 'San Diego', 'Grand Central Terminal', 'New York City', '89 E 42nd Street', 'today', '4 May', 'New York', 'Foley Square', '11:00', '13:30', 'Albuquerque', 'NM', 'Tiguex Park', 'Atlanta', 'Historic Fourth Ward Park', 'Cambridge', 'MA', 'Cambridge', '11:00', 'Chicago', 'IL', 'Field Museum', '1400', 'S Lake Shore Drive', '11:00', 'Des Moines', 'IA', 'Drake University', '2875 University Avenue', '15:30', 'Nashville', 'TN', 'Portland', 'University of Oregon', '70', 'NW Couch Street', '13:00', 'Saint Paul', 'MN', '10:30', 'San Antonio', 'TX', 'UTSA Downtown Campus', '09:30', 'San Diego', 'CA', 'Waterfront Park', 'West Sacramento', 'CA', 'River Walk Park', 'Interstate 88', 'Broome County', 'Exit 2', 'Port Crane', 'Port Dickinson', 'quarter-mile', 'several hours', 'I-405', 'Highway 101', 'Sherman Oaks', 'Los Angeles', 'The Port Authority of New York & New Jersey', 'PATH train lines', 'tonight', 'Jersey City', 'Journal Square', '33rd Street', 'Hoboken', '33rd Street', 'New Jersey Transit', 'Street-Port Authority Bus Terminal', 'Manhattan', 'New York City', 'Saturday', 'morning', 'LIRR', 'New York City', 'Great Neck and', 'Port Washington', 'Early morning', '3600', 'Essex Pond Quay', 'Monday', '23 September', 'At least one', 'Grand Central Terminal', 'New York City', 'Monday', 'evening', '7', 'Manhattan', 'Queens', 'Woodbridge', 'Virginia', 'Port Potomac Avenue', 'Chattanooga Lane', 'one', 'Venice Beach', 'Los Angeles', 'one', 'Washington Boulevard', 'Speedway', 'the Long Beach City College', 'Wednesday', '1 May', '1300', 'East Pacific Coast Highway', 'today', '28 January', 'the Virginia State Capitol', 'Richmond', 'Red for Ed', 'Grand Central Terminal', 'New York City', 'California', 'USA', 'more than 800', 'the day', 'a week', 'the United Nations', 'the U.N. Climate Action Summit', 'New York', 'New York’s', 'City Hall', '12:00', 'Battery Park', 'Greta Thunberg', 'the afternoon', 'Flagstaff', 'today', 'Flagstaff', 'Los Angeles', '25 hours', 'Los Angeles', 'Monday', '25 March', '01:00', '26 March', '25 percent', 'the afternoon', 'Uber Greenlight', 'Redondo Beach', '2400', 'Marine Avenue', 'West Virginia', 'Virginia', 'Thursday', 'Flatbush', 'Brooklyn', 'New York', 'today', '23 September', '961', 'Ocean Avenue', 'two', 'two', 'New Jersey', 'midnight', '12 February', 'New York', 'New York State', 'The Mohawk Valley', 'Little Falls', 'Whiteboro', 'Utica', 'Oneida', 'Herkimer', 'at least 240,000', 'Savannah Yacht Club', 'Bradley Point Road', 'Saturday 4 May', 'the Fort Pulaski National Monument', 'Oakland', 'today', '21 February', 'City Hall', 'Frank H. Ogawa Plaza', 'the Oakland Unified School District', 'Tuesday', 'second', 'Friday', 'morning', 'Seaport', 'New York City', '40', 'Fulton Street', 'the Financial District', 'the 405 Freeway', 'Westchester', 'Los Angeles', 'tonight', '23 September', '70,000 gallons', 'tonight', '11 November', 'Interstate 110', 'Harbor Freeway', 'Transit Way', 'South Los Angeles', 'two', 'Martin Luther King Junior Boulevard', 'the Whitehall Terminal', 'Lower Manhattan', 'New York', '4 Whitehall Street', 'Staten Island', 'Tropical Storm Imedla', 'Freeport', 'Houston', 'today', '17 September', '64', '40 mph', 'The National Weather Service', 'Palacios', 'El Campo', 'Freeport', 'Houston', 'Galveston', 'Port Arthur', 'Lake Charles', 'Louisiana', 'the Gulf of Mexico', 'earlier this afternoon', 'Texas', 'Thursday', 'two', 'Sunset Park', 'Brooklyn', 'New York City', 'Wednesday', 'morning', 'Smoke', '45th Street', '3rd Avenue', 'Wednesday', '8 May', 'IPO', 'Uber', 'Juno', '80-85 percent', '07:00-09:00', 'Chicago', 'Los Angeles', 'Minneapolis', 'Philadelphia', 'San Diego', 'San Francisco', 'Philadelphia', 'Washington D.C.', 'Uber and Lyft', 'the Uber Greenlight', 'New York', '31-00 47th', 'Long Island', 'Port Authority', 'Manhattan', 'New York City', 'Teays Valley Road', 'Scott Depot', 'Teays Valley', 'at least six hours', 'Valley', 'approximately 25 kilometers', 'Charleston', 'Canal Street', 'Italy', 'New York City', 'Interstate 10', 'approximately 28 kilometres', 'Houston', 'the San Jacinto River', 'The National Weather Service', 'United States', '3 March', 'New Jersey', 'Massachusetts', 'Connecticut', 'Rhode Island', 'Maine', 'New Hampshire', 'The National Weather Service', 'today', '3 March', 'New Jersey', 'Pennsylvania', 'West Virginia', 'Ohio', 'New York', 'New Jersey', 'the New Jersey Turnpike', 'Parkway', 'AC Expressway', 'today', '15:00 EST', 'today', '3 May', 'at least one hour', '10:00-11:30', 'Albany', 'NY', 'West Capitol Park', 'Anchorage', '13:30', 'Boston', 'MA', 'Massachusetts State House', '10:30', 'Denver', 'CO', 'Colorado', 'Capitol', 'Des Moines', 'IA', 'Capitol', 'Eugene', 'Oregon District Court', '14:00', 'Hartford', 'CT', 'Connecticut', 'Capitol', 'Houston', 'TX', 'City Hall', '10:00', 'Los Angeles', 'CA', 'City Hall', '11:30', 'Miami Beach', 'City Hall', '10:00', 'Philadelphia', 'Thomas Paine Plaza', '10:30', 'Saint Louis', 'MO', '10:30', 'Salt Lake City', 'Utah', 'Capitol', 'Seattle', 'Occidental Square', 'May 9', 'Rumo S.A.', 'America', 'Latina Logistica', 'BRL', '160,000', 'EUR 33,200', 'USD 40,000', 'Santos', 'SP', 'Brazil', 'Cataji', 'the Federal Public Ministry', 'Rumo', 'Sao Paulo', 'the Port Transport Association of the Valencian Community', 'Valencia', '10:30 AM', 'Saturday, March 2', 'Avendia de la Tres Cruces', 'Avenida del Cid', 'Gran Via Marques', 'Turia', 'Avendia', 'Calle Ejercito Espanol', 'November 15', 'German', 'Pinkertweg', 'Hamburg', 'the morning of November 15', 'the Vancouver Association of Educational Support Professionals', 'Friday', 'morning', 'January 25', 'the Vancouver Association of Educational Support Professionals', 'Ventura County', 'Bell Canyon', 'Oak Park', 'Unincorporated Thousand Oaks', 'South Coast', 'Oso Road', 'The Ventura Unified School District', 'Ventura High School\\nDeAnza Academy of Technology & Arts', 'Cabrillo Middle School', 'Lincoln Elementary', 'Voluntary', 'Ventura City', 'La Conchita', 'Ventura Missionary School', 'Ventura Community College', '46667', 'Telegraph Rd', 'the Calabasas/Agoura Community Center', '27040', 'Malibu Hills Rd', 'Ventura', 'Los Angeles', 'approximately 9 hours', '6 hours', 'November 1', 'MSL Albany', '943A', 'X4E', 'Yantian', 'Hong Kong', 'Chiwan', 'November 1', 'Port of Durban', 'up to', '6-days', 'November', 'Santa Ursula', '195B', '5-days', 'Cape Town', 'October 27', 'Port of Algeciras', 'Algeciras', 'second', 'November 17', 'December 13', 'Barcelona', 'today', 'November 1', 'Megapolis 943E', 'Port of Hong Kong', 'Port of Chiwan', 'Hong Kong', 'Port Freeport', 'approximately 24 hours', 'December 26', 'November 27', 'between 4 to 6 days', 'the Chittagong Container Terminal', 'Port of Chittagong', '11', '10', '1', 'CCT', '1-2 days', '2-4 days', 'the New Mooring Container Terminal', 'the Port of Ho Chi Minh', '2 days to 1 day', 'December 2018', 'Hamburg Sud', 'Cap Papatele', '938', 'South', 'North America', 'Pacific Islands', 'Long Beach', 'the United States', 'November 29', 'Hamburg Sud', 'Anl Tongala', '943', 'South', 'the Pacific Ocean', 'North America West Coast', 'New Zealand', 'Australia', 'Port of Long Beach', 'the United States', 'November 9', 'October 15', 'the Port of Hong Kong', 'around 0.5 day', 'November 4', 'the Port of Hong Kong', '0.5 day', 'November 5', '3', '19', 'October 2019', 'April 2020', 'Hong Kong', 'April 24', '1.5 to 2 days', 'the Port of Saigon', 'March 1', 'the Port of Saigon', 'around 1 day', 'January 14', 'the Port of Shanghai', 'around 0.5 day', 'the next three days', 'April 29', 'the Port of Busan', '0.5 days', 'April 30', 'April 29', 'the Port of Qingdao', '0.5 days', 'April 29', 'April 30', 'midnight', 'April 2', 'the Port of Hong Kong', '0.5 day', 'March 29', 'the Port of Hong Kong', 'about 0.5 day', 'August 27', 'the Port of Qingdao', 'the next 3-days', 'October 28', 'the Port of Qingdao', 'the next 3-days', 'October 23', 'the Port of Qingdao', 'the next 3 days', 'August 27', 'the Port of Xiamen', 'the next 3-days', 'the Port of Qingdao', 'about 0.5 day', 'March 25', 'the next 2 days', 'March 22', 'the Port of Hong Kong', 'around 0.5', 'the Port of Shanghai', 'around 0.5', 'the next two days', 'the morning of March 25', 'the evening of March 27', 'the next day', 'morning', 'the Port of Busan', 'about 0.5', 'March 25', 'November 6', 'the Port of Ningbo', '1-day', 'the next 3-days', 'March 29', 'the Port of Qingdao', 'about 1 day', 'Chinese', 'April 23', 'March 29', 'the Port of Ningbo', 'about 1-2 days', 'the evening of March 28 to the afternoon', 'the next day', 'October 30', 'the Port of Saigon', 'Port of Ho Chi Minh', '1.5 to 2 days', 'the Port of Saigon', 'Cat Lai Port', '1.5 to 2 days', 'March 29', 'the Port of Shanghai', 'about 1.5 to 2 days', 'the evening of March 28 to the morning of the next day', 'April 2', 'the Port of Qingdao', '12-hours', 'the next three days', 'April 2', 'the Port of Shanghai', '12-hours', '8-hours', 'the coming hours', 'April 2', 'the Port of Yantian', '12-hours', '24-hours', 'the Port of Hong Kong', '1-day', '1.5 days', '2-days', 'the Port of Qingdao', '1-day', 'the morning', 'January 14', 'November 1', 'Port of Durban', 'up to', '6-days', 'November', 'April 2', 'the Port of Ningbo', 'less than', '24-hours', 'the morning', 'April 4', 'August 20', 'the Port of Saigon', 'Port of Ho Chi Minh', '1.5 to 2 days', 'Victoria Harbour', 'Victoria Park', 'the Central Government Offices', '11:00 AM', 'Friday, March 15', 'hundreds', 'September 10', 'Vietnam', 'Ministry of Industry and Trade', 'MOIT', 'China', 'Phu My Flat Steel Company Ltd.', 'Vietnam', 'China Steel Sumikin Vietnam Joint Stock Company', 'MOIT', '90 days', 'Thai', 'Arista Leo', 'Vietnamese', 'March 10', 'Con Dao island area', 'South China Sea', 'Vietnam', '300 tons', 'Vung Tau', 'October 21', 'Vietnamese', 'Vietsun Integrity', 'the Long Tau River', 'Ho Chi Minh City', 'Vietnam', 'October 19', 'Ho Chi Minh', 'Vung Tau', '290', 'two hours', '17', 'Amtrak', 'Virginia', 'Hurricane Dorian', 'Amtrak', 'Virginia St', 'October 21', 'the Port of Genoa', 'the Department of Civil Protection', 'Italy', 'October 7', 'the Port of Genoa', 'Italy', 'morning', '25', 'Vulcaanhaven', 'Vlaardingen', 'Felixstowe', 'the United Kingdom', 'Two', 'Approximately 1,500', 'four', 'Vancouver', 'Thursday, September 19', 'the Rosewood Hotel', 'Georgia', 'Hyatt Regency', 'Westin Bayshore', 'Pinnacle Hotel Harbourfront', 'the Port of Ningbo', 'around 0.5', 'Beilun', 'Third', 'Phase 2', 'Xiazhi', 'the morning of March 23', 'mornings', 'the morning of March 25', 'the evening of March 27', 'morning', 'East Container Terminal', 'Shanghai', 'around 1 day', 'March 20 to March 21', 'the midnight of March 20', 'the evening', 'November 1', 'week 44', 'October 28', 'November 3', 'the Port of Tanjung Pelepas', '7-hours', '5-hours', 'Chittagong', 'CCT', 'the New Mooring Container Terminal', 'NCT', 'Cargo', '2-4 days', 'Terminal', '2-3 days', 'Intelligence', 'Everstream Analytics', 'the Port of Tokyo', 'Japan', 'up to 0.5 days', 'the Port of Busan,', 'South Korea', 'late October 7', 'Weserstrasse', 'Bremerhaven', 'Germany', '450 square meter', '4', 'March 1', 'Barangay', 'Manggahan', 'Metro Manila', 'November 18', '75', 'Keasbey', 'New Jersey', 'The London Marathon', '28 April', 'London', 'around 42,000', '2018', 'Blackheath', 'Lewisham', 'Woolwich', 'Greenwich', 'the Isle of Dogs', 'Tower Hill', 'London Bridge', 'The Mall in Westminster', '2013', 'Boston Marathon', 'US', 'UK', 'IHS Markit Foresight', '2019', '20 April', 'the M-10 and M-11', 'Vyshniy Volochek', 'Moscow', 'St Petersburg', 'Russia', 'two', 'Tver', 'the coming weeks', 'darker hours', 'IHS Markit Foresight', '2019', 'Vox', 'Catalonia', 'Spain', '30 March', 'Avinguda Maria Cristina', 'Barcelona', 'thousands', 'one', 'Vox', 'Madrid', 'October 2018', '9,000', 'The Catalan separatist Committee', 'CDR', 'the day', '3,500', '23 March 2019', \"Placa d'Espanya\", 'Avinguda Parallel', 'Gran Via de les', 'Corts Catalanes', 'IHS Markit Foresight', '2019', 'Brexit', '23 March', 'London', 'Park Lane', 'Parliament Square', 'Piccadilly', \"St James's Street\", 'Trafalgar Square', 'Downing Street', 'hundreds of thousands', \"People's Vote\", 'London', 'October 2018', '700,000', 'Westminster Bridge', 'Birdcage Walk', 'Abingdon Street', 'Victoria Street', 'IHS Markit Foresight', '2019', 'Extinction Rebellion', '15 April', 'Parliament Square', 'London', 'Thousands', 'Westminster Bridge', 'Millbank', 'London', 'November 2018', 'the British Broadcasting Corporation', 'BBC', 'December 2018', 'IHS Markit Foresight', '2019', 'Hill Carnival', 'more than a million', 'every year', 'London', '25â\\x80\\x9326 August', 'The Carnival Parade', 'Great Western Road', 'Westbourne Park', 'Westbourne Grove', 'Ladbroke Gardens,', 'Ladbroke Grove', 'Kensal Green Cemetery', 'Ladbroke Grove', 'Portobello Road', 'Holland Park Avenue', 'Harrow Road', 'Hill Gate', 'Latimer Road', 'Holland Park', 'Westbourne Park', 'Royal Oak', 'both days', 'IHS Markit Foresight', '2019', '15 January', 'the UK House of Commons', \"Theresa May's\", 'Brexit', 'Labour Party', 'Jeremy Corbyn', '16 January', 'anti-Brexit', 'Brexit', 'the Houses of Parliament', 'Westminster', 'London', 'the coming days', 'thousands', '15 January', 'Millbank', 'Parliament Square', 'Great George Street', 'Birdcage Walk', 'Westminster Bridge', 'IHS Markit Foresight', '2019', '23 January', 'Uber', 'Cabify', '29 January', 'Hundreds', 'Madrid', 'Gran Via', 'Puerta', 'del Sol', 'Calle de Genova', \"the People's Party's\", '23 January', 'Fitur', 'IFEMA', 'Madrid', '28 January', 'Paseo de la Castellana', 'IHS Markit Foresight', '2019', 'The Elite Taxi Madrid Association', '9 February', 'Madrid', '5 February', 'two-week', 'Uber', 'Cabify', 'thousands', 'Plaza del Emperador', 'Plaza de Colon', '23 January', 'Fitur', 'IFEMA', 'Madrid', '28 January', 'Paseo de la Castellana', 'IHS Markit Foresight', '2019', 'Greek', 'hundreds', 'several hours', 'the first quarter of 2019', '2018', 'Greece', 'up to a day', 'Athens', 'Piraeus', 'Volos', 'Crete', 'Bulgaria', '28 January 2019', 'one', 'Athens', 'Nikaia', 'IHS Markit Foresight', '2019', 'USB', 'CUB', 'SGB', '8 March', \"International Women's Day\", 'Italy', 'the day', 'Milano Centrale', 'Roma Termini', 'Milan Malpensa', 'MXP', 'Rome Ciampino', 'CIA', 'the Port of Genoa and Port of Gioia Tauro', 'Italian', 'IHS Markit Foresight', '2019', '18 February', 'Callao', 'Lima', 'Callao', 'Peru', 'El Callao', 'IHS Markit Foresight', '2019', 'The National Union of Rail', 'RMT', 'Associated Society of Locomotive Engineers and Firemen (ASLEF', 'Freightliner Intermodal', 'Freightliner Heavy Haul', '15 March', 'Freightliner', 'UK', 'over 100', 'Felixstowe, Southampton', 'London Gateway', '16', 'over 770,000', 'IHS Markit Foresight', '2019', 'Albert Rivera', 'the Citizens party', 'Ciudadanos', \"Pablo Casado of the People's Party\", 'Santiago Abascal', '10 February', 'Plaza de Colon', 'Madrid', 'Pedro Sanchez', 'Catalan', '2019', 'thousands', 'Vox', 'Spanish', 'December 2018', 'Paseo de la Castellana', 'Calle de Genova', 'IHS Markit Foresight', '2019', 'Port of Durban', '23.45', 'September 12', '00.45', 'September 13', 'Eden Coast', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'November 21', 'November 22', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'August 29', 'Australian’s Bureau of Meteorology', 'August 29 - 30', 'Sydney', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'Hunter Coast', 'Illawarra Coast', 'Port Phillip', 'Western Port', 'Central Coast', 'Central Gippsland Coast', 'East Gippsland Coast', 'Gippsland Lakes', 'West Coast', 'November 21', 'November 22', 'East Gippsland Coast', 'East Gippsland Coast', 'November 26', 'Port Philip', 'Western Port', 'West Coast', 'Central Coast', 'Central Gippsland Coast', 'November 27', 'East Gippsland Coast', 'west coast', 'Spain', 'Elsa', 'León', 'Cantabria', 'La Rioja', 'Navarra', 'Madrid', 'Extremadura', 'Pontevedra', 'Álava', 'Huesca', 'Cantabria', 'Huesca', 'Lleida', 'Barcelona', 'Gerona', 'León', 'Zamora', 'Salamanca', 'Ávila', 'Madrid', 'Cáceres', 'Badajoz', 'Toledo', 'Huelva', 'Seville', 'Cádiz', 'Córdoba', 'Hueva', 'the 22 December', 'August 20', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'August 21', 'Eden Coast', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'October 16', 'the Australian Bureau of Meteorology', 'October 16-17', 'Macquarie Coast October', 'October 17', 'Eden Coast', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'one', 'Acton', 'West Carson Mesa Rd', 'Vincent View Rd', 'AV Line', '200', 'Los Angeles', 'Via Princessa', 'Santa Clarita', 'London Northwestern Railway', 'LNR', 'RMT', 'every Saturday through the end of December', 'RMT', 'WMR', 'West Midlands Region', 'Sydney', 'Commuters', 'Victoria', 'Powercor', 'Jemena Power', 'Melbourne', '2019', 'China', 'Asian', 'Chinese', 'another festive season', 'Chinese New Year', 'the Spring Festival', 'the Lunar New Year', 'The year', 'February 5, 2019', 'the Chinese Zodiac', 'twelve-year', '12', 'millions', 'three to four weeks', 'about a week', '10-days', 'China', 'the last week of January 2019', 'Chinese', 'China', 'CNY', 'the holidays', 'CNY', 'Christmas 2018', 'China', 'US', 'January 1, 2019', '25 percent', '10 to 25 percent', 'Chinese', 'US', 'the beginning of 2019', 'March 1, 2019', 'two', 'January', 'the Lunar New Year', 'China', 'January', 'Asia Pacific', 'Europe', 'Latin America', 'North America', 'Middle East', 'North Africa', 'the Asia Pacific region', 'China', 'CNY', 'ETAs', 'Chinese', 'Shanghai', 'Qingdao', 'Kaohsiung', 'Taiwan', 'the first and second weeks of February', 'the Lunar New Year', 'Asia Pacific', 'Europe', 'North America', 'January', 'Europe', 'North America', 'Asia', 'the Lunar New Year', 'CNY', 'annual', 'Everstream Analytics', 'China', 'the Chinese New Year', 'the Eden Coast', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'August 19', 'Illawarra Coast', 'Eden Coast', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Batemans Coast', 'August 20', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'October 4', 'Warnings', 'Macquarie Coast', 'the next day', 'the US Northeast', 'December 2', 'Northeast', 'Pennsylvania', 'New York', 'New England', 'Interstate 95', 'Albany', 'New York', 'December 1', 'Readsboro', 'Vermont', 'Schenectady', 'New York', 'winter', 'Albany', 'Syracuse', 'New York', 'Allentown', 'Scranton', 'Pennsylvania', 'Concord', 'Manchester', 'New Hampshire', 'Portland', 'Maine', 'December 3', 'New England', 'the evening', 'December 3', 'Women', 'March', 'the United States', 'Saturday', '18 January', 'Washington', 'D.C.', '09:00', 'the Freedom Plaza', 'New York City', 'Philadelphia', 'Pittsburgh', 'Cleveland', 'Louisville', 'Orlando', 'Houston', 'San Antonio', 'Sioux Falls', 'Chicago', 'Albuquerque', 'Phoenix', 'Los Angeles', 'Sacramento', 'San Francisco', 'Seattle', 'Anchorage', '2018', '2019', 'hundreds of thousands', 'this year', 'January 25', 'the Rotterdam Short Sea Terminals', 'this week', 'German', 'August 21', 'Medrepair N.V.', 'the Port of Hamburg', 'Germany', 'August 21', 'the Port of Hamburg', 'August 21', 'Friday', 'Ford Sollers', 'Vsevolzhsk', 'about ten miles', 'St Petersburg', 'the morning of Monday, April 8', 'about 300', 'Ford', 'Russia', 'St Petersburg', 'two years', 'Ford', 'half', 'Ford Sollers', 'Focus', 'Mondeo', '2003', 'Ford Focus', 'Russia', 'about a decade', 'Ford', 'Russia', 'June of this year', 'Ford Transit', 'Elabuga', 'Sollers', 'Vsevolzhsk', 'September 3', 'Haifa', 'ZIM Integrated Shipping Services', 'USD 12,000', 'EUR', 'ZIM', 'the Yantian Express', '20', 'Pakistan', 'Tuesday', '2019', 'COVID-19', 'Karachi', 'Lahore', 'Peshawar', 'Rawalpindi', 'Islamabad', 'Faisalabad', 'Multan', 'Gujranawala', 'Swat', 'Sukkar, Sialkot', 'Gujarat', 'Ghotki', 'Larakana', 'Khairpur', 'Ghazi Khan', 'Malakand', 'Mardan', 'COVID-19', 'National Command and', 'NCOC', 'June 15', 'the hours of 9:00 AM and 7:00 PM', 'Saturday', 'ten', 'at least two weeks', 'June 30', 'NCOC', 'COVID-19', 'Islamabad', 'G-9/2', 'over 300', 'recent days', 'Wednesday', 'Pakistan', '154,760', '2,975', 'recent days', 'Pakistan', 'daily', 'five consecutive days', 'June 9-13', '6,825', 'June 13', 'each day', 'last month', 'Imran Khan', 'COVID-19', 'the World Health Organization', 'July', 'August', 'up to 900,000', 'Pakistan', 'recent weeks', 'COVID-19', 'July 1', '11', '24', '12,400', 'MSC Flavia', 'COVID-19', \"Hong Kong's\", 'Kwai Chung Container Terminal', 'June 24', 'Meishan', 'the Port of Ningbo', 'June 26', 'Yokohama, Xiamen', 'Shenzhen', 'the Asia-South America', '6', 'Indonesia', 'Greece', 'Croatia', 'between June 21 and 23', 'Hong Kong', 'SAR', 'June 17', 'Port Klang’s Westport', 'last week', '12 hours', 'March 12', 'the Tianjin PAC International Container Terminal', '12 hours', 'March 14', 'March 12', 'Waigaoqiao', 'Terminal', 'Shanghai', '12 hours', 'March 14', 'March 12', 'Ningbo', '12-36 hours', 'Ningbo', 'Beilun', 'Terminal', '12 hours', 'March 12', '13', 'Ningbo Meishan Terminal', '12-36 hours', 'March 12-14', 'March 13', '3.9', 'approximately 178 miles', 'Taichung City', 'Taiwan', 'the Pacific Ocean', 'APM', 'Elizabeth', 'June 9', '1 hour', 'between 12:00 and 13:00', 'the ILA & USMX', '11:00', '13:00', 'March 18', 'Bahamas', 'Europe', '20 days', 'the Freeport Container Port', 'COVID-19', 'September 1', 'over 210,000 tons', 'the Port of San Antonio', 'September 1', 'HOPE', '40,000 tons', 'San Lorenzo', '1,300', 'January 31', '25,000', 'Wah Fai Industrial Building', 'Yau Tong', '25', '1,000', 'Hong Kong', 'Thailand', 'Wah Fai Industrial Building on Sze Shan Street', 'Yau Tong', 'Hong Kong', 'Tropical Storm Claudia', 'the Timor Sea', '2M Alliance', 'Maersk', 'MSC', 'Q3', 'Qingdao', 'Felixstowe', 'Ningbo', 'Yantian', 'Tanjung Pelepas', 'Antwerp', 'Antwerp', 'Rotterdam', 'Singapore', 'Hong Kong', 'Shanghai', 'Ningbo', 'the 2M Alliance', 'Maersk Line', 'MSC', 'ZIM', 'weeks 40, 43', '45', 'TP-1', 'weeks 41, 44', '46', 'TP-1', '1', 'Chinese', 'Long Beach', 'Xingang', 'GA - Charleston SC - Jacksonville FL - Wilmington NC - Kingston', 'Yantian', 'Long Beach', 'the 2M Alliance of Maersk', 'MSC', '2M Alliance', 'week 28', 'week 32', 'Laem Chabang', 'July 6', 'Singapore', 'Tanjung Pelepas', 'New York', 'VA', 'Freeport Bahamas', 'Tanjung Pelepas', 'Laem Chabang', 'August 9', 'Singapore', 'Laem Chabang', 'January 7', '30-hour', 'Sydney Patrick Terminals', 'bush', 'Christmas', 'New Year', 'July 24', 'four', 'Hong Kong Anchorage', 'COVID-19', 'Container', 'ROSA', '9484534', '54339', '4380', 'Container', 'MSC KERRY', '9062960', '45530', '3501', 'Container', 'VANTAGE', '110875', '8800', 'Container', 'CMA CGM ROSSINI', '9280639', '73235', '5770', 'The European-Mediterranean Seismological Centre', '4.3', 'approximately 42 miles', 'San Antonio', 'Puerto Rico', 'The U.S. Geological Survey', '4.5', '42 miles', 'San Antonio', 'Puerto Rico', 'Western Australia', 'approximately 45 miles', 'Pardoo, Western Australia', '12 miles per hour', '40 miles per hour', 'up to 52 miles per hour', 'Broome', 'Blake', 'Blake', 'Marble Bar', 'Wednesday', 'evening', 'Nullagine', 'Thursday', 'morning', 'September 15', 'Terminals Rotterdam', 'Santa Ursula', 'Seago Piraeus', 'Cap San Raphael', 'Vayenga Maersk', 'Bernhard Schulte', 'September 15', 'Rotterdam', 'Tuesday', 'February 25', 'the Centers for Disease Control and Prevention', 'CDC', 'Novel Coronavirus', 'COVID-19', 'the United States', 'the coming days', 'weeks', '57', 'the United States', 'Twelve', 'China', 'two', 'three', 'Wuhan', 'China', '40', 'the Port of Yokohama', 'Yokohama', 'Japan', 'Monday', 'Donald Trump', '$2.5 billion', 'CDC', 'COVID-19', 'U.S.', 'COVID-19', 'COVID-19', 'U.S.', 'China', 'the last two weeks', 'South Korea', 'Italy', 'Iran', 'China', 'Monday', 'Canada', 'first', 'China', 'Iran', 'CDC', 'only 12', 'U.S.', 'COVID-19', 'COVID-19', 'COVID-19', 'U.S.', 'Wuhan', 'February 13', 'CDC', 'COVID-19', 'U.S.', 'COVID-19', 'South Korea', 'one', 'the last week', 'almost 1,000', '35,000', 'U.S.', '426', 'CDC', 'COVID-19', 'the United States', 'American', 'Tuesday', 'CDC', 'American', 'COVID-19', 'CDC', 'September 9 that 6', '23', 'Panamanian', 'Vega Rose', 'COVID-19', 'September 2', 'the Port of Vancouver', 'the Vega Rose', 'July 8', '7', '9', 'Samus Swan', 'COVID-19', 'Algeciras', 'July 6', 'Nigeria', 'Gibraltar', 'The European-Mediterranean Seismological Centre', '4.3', '72 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'Muslim Brotherhood', 'Badie', 'ten', 'Brotherhood', '2013', 'Port Said', 'Cat Lai', 'Ho Chi Minh', 'the US Agency for International Development', 'around 11:55 AM', 'Monday', 'Serrantes Street', 'Jolo', 'Sulu Province', 'COVID-19', 'About an hour later', 'first', 'two', 'at least 15', 'another 75', 'at least seven', '21', 'six', 'Jolo', 'coast guard', 'Monday', 'the Islamic State', 'Abu Sayyaf', 'Abu Sayyaf', 'Hajan Sawadjaan', 'earlier this month', 'Abu Sayyaf', 'Anduljihad Susukan', 'Davao City', 'Sulu', 'Monday', 'June', 'four', 'Jolo', 'Abu Sayyaf', 'two', 'Sulu', 'Abu Sayyaf', 'Monday', 'Abu Sayyaf', 'Jolo', 'Sulu and Basilan Provinces', 'Jolo', 'the next several days', 'Jolo', 'Sulu Province', 'August 31', 'the Port of San Antonio', '04:00', 'August 31', 'COVID-19', 'North Korea', 'Dalian', 'China', 'west coast', 'Nampho', 'Wednesday', 'the Maritime Union of Australia', 'Patrick Terminals', 'the Fair Work Commission', 'Sydney', 'One-day', 'Port Botany', 'Brisbane', 'this coming Friday', 'Wednesday', 'morning', 'MUA', 'Patrick', 'the next year', '2.5 percent', 'DP World', 'last Friday', 'Hutchison Ports', 'Patrick', '31 percent', 'Australia', 'Port Botany', 'as many as 40', 'up to 90,000', 'several recent night', 'Wednesday', 'February 17', 'Bremerhaven', 'January 21', 'Storm Gloria', 'Barcelona', 'Figueres', 'January 20', 'Abu Qir', 'Alexandria Governorate', 'Hutchinsons Ports', 'the Egyptian Navy', 'USD730', 'Air Arabia', 'G9', 'Khartoum', 'Tuesday', '14 January', 'Sharjah', 'UAE', 'Port Sudan', 'Jeddah', 'Khartoum', 'January 29', 'Air Mauritius', 'Shanghai', 'Port Louis', 'January 31', 'The China Meteorological Administration', 'Typhoon Maysak', 'four', 'Wednesday', 'afternoon', '2 September', 'Thursday', 'afternoon', '3 September', 'Zhejiang province', 'Shanghai', 'Jiangsu', 'the Yangtze River', 'China', 'Yellow Seas', 'China', 'Alexandria Port', 'Dekheila Port', 'March 17', '10:20', 'Alexandria Harbor', 'Arabic-language', 'March 18', 'Alexandria Port', 'March 17', 'Authorities', 'Dekheila Port', 'Alexandria', '100%', '8 September', '4 August', 'Beirut', 'February 26', 'China', 'Korea', 'Italy', 'Singapore', 'Thailand', 'Japan', 'Iraq', 'Kuwaiti', 'February 4', 'the Panama Canal Authority', 'ACP', '30 days', 'China', 'Thailand', 'Japan', 'South Korea', 'Taiwan', 'Malaysia', 'Germany', 'Macau', 'Hong Kong', 'Singapore', 'Saudi Arabia', 'Vietnam', 'United States of America', 'France', 'Australia', 'Kenya', 'Rwanda', 'Uganda', 'South Sudan', 'Uganda', 'Rwanda', 'South Sudan', 'SGR', 'Naivasha Inland Container Depot', 'ICD', 'June 1', 'Victoria', 'Port Bell', 'Jinja', 'August 26', 'August 26', 'the Port of Dalian', '12:00', 'August 27', 'Amazon', 'Staten Island', 'New York', 'March 30', 'Amazon', 'Staten Island', 'last week', '12:30 pm', 'Thursday', 'Iran', 'coast guard', 'a United Arab Emirates', 'August 17, hours', 'Emirati', 'two', 'Iranian', 'Bu', 'Abu Dhabi', 'Iranian', 'Emirati', 'Iranian', 'Iran', 'UAE', 'Tehran', 'Abu Dhabi', 'Iran', 'UAE', 'Persian Gulf', 'two', 'Tehran', 'Abu Dhabi', 'Israel', 'Iran', 'last week', 'UAE', 'Tehran', '2016', 'Saudi', 'Iran', 'Abraham Accord', 'Abu Dhabi', 'Israel', 'Iranian', 'Hassan Rowhani', 'UAE', 'Israel', 'Gulf', 'Abu Dhabi', 'Mexico', 'Andrés Manuel López Obrador', 'Pacific', 'Manzanillo', 'Javier Jiménez Espriú', 'Mexico', 'Communications and Transportation', 'SCT', 'July 3', 'the AMP Terminal', 'the Port of Nhava Sheva', 'Mumbai', 'India', 'COVID-19', 'August 24', 'Hamburg', 'District Court', 'March 10', 'Andalusian', 'the Port of Algeciras', '11:00', 'March 12', 'Anglo', 'Rio Tinto', 'RIO.AX', 'Dalian Port Co. Ltd.', 'Sunday', 'Turkey', '61', '2019', 'COVID-19', 'the previous 24 hours', 'Turkey', 'March 31', 'COVID-19', '3,397', 'Turkey', '120,045', 'Sunday', '1,670', 'eighth', 'More than 68,000', 'roughly 62,500', 'May 3', 'Turkey', 'COVID-19', 'Recep Tayyip Erdoğan', 'Monday', 'Erzurum', 'Aydin', 'Hatay', 'Malatya', 'Mersin', 'Antalya', 'Mugla', 'the age of 20', 'four hours', 'one day', 'next weekend', '24', 'Ankara', 'Istanbul', 'Izmir', 'May 11', 'June 15', 'Erdoğan', 'Turkey', 'International Workers’ Day', 'Ankara', 'Istanbul', 'last Friday', 'May 18', 'the Jawaharlal Nehru Port Trust', 'annual', 'May 27', 'between 09:00 to 13:00', 'QC Operations', 'Wharf', 'four hours', 'Rotterdam', 'Netherlands', 'Guayaquil', 'July 22', 'the Port Authority', '20', 'the North Access', 'APM', 'April 20', 'APM Terminals Callao', 'Callao', 'Peru', 'COVID-19', 'MTC', 'Peru', 'Callao', 'February 11', 'the Port of Vancouver', 'Venables', 'Glen Streets', 'the Port of Vancouver', 'Monday, September 28', 'the Supreme Court', 'the Superior Court of Justice of Catalonia', 'TSJCAT', 'Catalonian', 'Quim Torra', 'TSJCAT', 'Torra', 'a period of 18 months', 'EUR 30,000', 'March 2019', 'Catalan', '2017', 'Torra', 'Pere Aragones', 'Catalonia', 'Barcelona', 'Monday', 'Mossos d’Esquadra', 'the Public Prosecutor’s Office', 'Jardinets de Gracia', 'thousands', 'Placa de Tetuan', 'approximately 60', 'the Palafolls City Council', 'Ciutadella Park', 'Parliament', 'Mossos d’Esquadra', 'Ronda de Sant Pere', 'the Catalan National Assembly', 'At least five', 'TSJCAT', 'the Catalan National Assembly of Andorra', 'the Supreme Court', 'Torra', 'Torra', 'Carles Puigdemont', '2017', 'Belgium', 'Spain', 'Torra', 'European', 'the Strasbourg Court', 'Catalans', 'February 7, 2021', '7.5 million', 'Spain', 'Catalan', 'Spain', '01:15.6N-104:09.7E', 'six', 'Singapore', 'VTIS', '01:16N-104:16E', 'Marshall', 'Singapore', 'Ulsan', 'three', '1:15.1N-104:4.48E', 'five', 'Liberia', \"Vega Aquarius'\", 'Singapore', 'China', 'Panama', 'two', 'Singapore', 'the Singapore Coast Guard', 'Patimban', 'Joko Widodo', 'Patimban', 'Tanjung Priok', '28', 'August 4', 'German', 'at least 49', 'Hamburg', 'Germany', 'COVID-19', 'August 3', 'this week', 'the Benin River Port', 'Edo State', 'Marine', 'eight', 'Buipe', 'the Savannah Region', 'Bulk Oil Storage and Transport', 'La Goulette', 'Tunis', '200,000', 'Algerian', 'France', 'Genoa', 'Italy', 'Rotterdam', 'Customs', 'around 1,000kg', 'Ecuador', 'Sunday, January 5', 'around 7:00 PM', 'Jawaharlal Nehru University', 'JNU', 'Baba Gang Nath Marg', 'Vedant', 'Mandir Marg', 'South Delhi', 'JNU', 'the Citizenship Amendment Act', 'approximately three hours', 'At least 36', 'four', 'Akhil Bharatiya Vidyarthi Parishad', 'JNU', 'India', 'CAA', 'CAA', 'India', 'December 12, 2019', 'January 10, 2020', 'non-Muslim', 'India', 'Afghanistan', 'Bangladesh', 'Pakistan', 'December 15', 'Delhi', 'over 100', 'JNU', 'ABVP', 'December 16', 'Delhi University', 'the Students Federation of India', 'SFI', 'CAA', 'December 16', 'SFI', 'Kerala College', 'India', 'CAA', 'India', 'July 22', 'Aujaq', 'Sainte-Catherine', 'QC', '16:15', 'July 10', 'Salaberry-de-Valleyfield', 'QC', 'Montreal', 'QC', 'Montreal', 'July 11', 'Contrecoeur', 'Kuwait', 'Ministry of Health', 'the Republic of Korea', 'Italy', 'Thailand', 'Singapore', 'Japan', 'China', 'Hong Kong', 'February 26', 'two weeks', 'Hong Kong', 'annual', 'Lunar New Year', 'Victoria Harbour', '26 January', 'this date', 'Saturday', 'Saudi Arabia', '2nd', 'Industrial City', 'Dammam', 'Eastern Province', 'COVID-19', 'between the hours of 9:00 AM and 5:00 PM', 'one-third', 'Saudi', 'Saturday', 'Dammam', 'Al-Atheer', 'April 15', 'Saudi Arabia', '28,656', 'COVID-19', '191', 'Saudi Arabia’s', 'COVID-19', 'daily', 'Monday', '1,645', 'Ramadan', 'Saturday', 'Riyadh', 'Saturday', 'Kingdom', 'Saudi Arabi', 'This week', 'the Port of Chittagong', 'The Chittagong Port Authority', 'nearly 30 years', 'Bangladesh', 'August 4', 'Beirut', 'Lebanon', 'at least hundreds', 'thousands', 'thousands', 'Bangladeshi', '30 days', '30 days', '15 final days', 'the Chittagong Metropolitan Chamber of Commerce and Industry', 'as much as 25 percent', 'the Chittagong Chamber of Commerce and Industry', 'July', 'hours', 'Bangladeshi', 'As much as 90 percent', 'Bangladesh', 'the Port of Chittagong', 'February 19', 'the Port of Shanghai', '1 - 1.5 days', 'February 20 and 21', 'February 19', 'Port of Busan', '0.5 day', 'February 20 and 21', 'Jan 28', 'Busan', '14 days', 'Chinese', 'February 17', 'the Hong Kong Modern Terminal', '0.5 days', 'the coming 3 days', 'March 31', 'Qingdao Qinwan Container Terminal', 'around 0.5 day', 'the next 2 days', 'February 24', 'the Shanghai Guangdong Terminal', 'China', 'around 0.5 day', 'Intelligence', 'Everstream Analytics', 'February 4', 'the Port of Chittagong', '0-2 days', 'February 19', 'Port of Dalian', '1 day', 'the previous days', 'the next 3 days', 'the Port of Busan', 'Intelligence', 'Everstream Analytics', 'February 10', 'the Port of Chittagong', 'Bangladesh', '1-2 days', 'September 29', 'the Port of Singapore', '12', '24-hours', 'January 21', 'the Port of Busan', '12-hours', 'January 22', 'September 29', 'the Port of Penang', '12-hours', 'March 20', 'Shanghai Guandong Terminal', 'Yangshan Deepwater Port', '0.5 day', 'March 21', 'March 22', 'March 31', 'the Port of Hong Kong', 'around 0.5 day', 'the next 3 days', 'February 24', 'the Port of Busan', '0.5 day', 'February 25', 'March 3', 'the Port of Busan', '0.5 day', 'the coming 3 days', 'January 16', 'the Shanghai Hudong Container Terminal', 'up to 36 hours', 'September 16', 'approximately 0.5 days', 'the Port of Penang', 'September 16', 'the Port of Singapore', 'around 0.5 days', 'May 20', 'the Shanghai Guangdong Container Terminal', 'China', 'around 0.5 day', 'GZ Oceangate Container Terminal', 'the Port of Nansha', 'Guangzhou', 'around 12 hours', 'September 9', 'the Port of Shenzhen', '0.5-1 days', 'May 13', 'the Port of Rotterdam', '1 day', 'the previous week', '0.5 day', 'May 13', 'the Port of Cai Mep', '1 day', 'the past week', 'June 8', 'Busan Newport International Terminal', 'about 12 hours', 'July 5', 'Port of Busan', 'Busan Newport International Terminal', '1.5-2 days', '87 percent', '60 percent', '81 percent', 'Busan Hanjin', '3-3.5 days', '84 percent', '75 percent', '89 percent', 'April 28', 'Port of Ningbo', '0.5 days', 'April 30', '3 days', 'June 8', 'the Port of Qingdao', '12 hours', 'June 8', 'June 5', 'Port of Qingdao', '12 hours', 'June 5', 'February 3', 'the Port of Shanghai', '12-24 hours', '12 hours', 'Shanghai', '12-24 hours', 'the Shanghai East Container Terminal', 'the coming three days', 'June 8', 'the Port of Shanghai', '12 - 24 hours', 'Shanghai Guandong Terminal', '12-24 hours', 'Shanghai East Container Terminal', '12 hours', 'June 3', 'Port of Rotterdam', 'around 12 hours', 'the previous week', 'June 2', '12 hours', 'the Hanjin Busan New Port', 'Busan Newport International Terminal', 'the Port of Busan', 'May 7', '12 hours', 'the Hong Kong Modern Terminal', 'the coming 3 days', 'June 15', 'the Port of Kaohsiung', '12 hours', 'June 13', 'Tropical Storm Nuri', 'May 7', '12 hours', 'Waigaoqiao', 'Shanghai East Container Terminal', 'the Port of Shanghai', '2-3 days', 'July 23', 'the Songyu Container Terminal', 'the Port of Xiamen', 'China', '12 hours', 'the next three days', 'May 7', '12 hours', 'the Shanghai Guandong Container Terminal', 'the Port of Yangshan', 'June 2', '12 hours', 'the Qingdao Qianwan Container Terminal', 'June 2', '12 hours', 'the Shanghai East Container Terminal', 'the Shanghai Guandong Terminal', 'June 3', 'June 2', '12 hours', 'the Yantian International Container Terminal', 'the coming three days', 'June 22', 'the Port of Yantian', '12-24 hours', 'June 24', 'January 23', '12-24 hours', 'the Shanghai East Container Terminal', 'January 27', 'May 13', '12-36 hours', 'the Port of Ningbo', 'Reefer', 'MSICT', 'the past few days', 'the following days', 'May 7', '12-48 hours', 'the Ningbo Meishan', 'Ningbo', '4', 'the Port of Ningbo', '12 hours', 'Meishan', 'Beilun', '4', '48 hours', 'Beilun', '4', 'July 13', '30-36 hours', 'the Victoria International Container Terminal', 'Port of Melbourne', 'COVID-19', 'May 20', 'the Port of Rotterdam', 'Netherlands', '0.5 days', '12 hours', 'the previous week', 'March 2', 'the Busan Hanjin New Port', '0.5 days', 'the coming 3 days', 'March 2', 'the Shanghai Guandong Terminal', '0.5 days', 'March 2', 'Shanghai East Container Terminal', '0.5 days', 'February 28', '0', 'February 29', 'March 18', 'the Port of Yantian', '0.5 days', 'March 2', 'Dalian Port', '1 day', 'the coming 3 days', 'Dalian Port', 'GZ Oceangate Container Terminal', 'the Port of Nansha', 'Guangzhou', 'around 12 hours', 'February 5', 'February 11', 'the Port of Santos', '24-hours', 'February 6', 'Tuesday', 'Iraqi', '2019', 'COVID-19', 'COVID-19', 'one hour', 'between 6:00 PM', '6:00 AM', 'weekdays', '24-hour', 'Friday-Saturday weekend', 'more than three', 'US', '85', 'Thursday', 'Iraq', '2,085', '93', 'Wednesday', 'Dubai', '19', 'last week', 'COVID-19', 'Dubai Marina', 'Satwa', 'Al Rafaa', 'Souq Al Kabeer', 'Karama', 'Hor Al Anz', 'Abu Hail', 'Al Ras', 'Sabkha', 'Al Dhagaya', 'Bani Yas Square', 'Qusais', 'Ras Al Khor', 'Naif', 'Khaled bin Al', 'Um Suqeim', 'Bastakiya', 'International City, Awir', 'Al Fahidi', 'Port Saeed', '165', 'two', 'April 24', '24-hour', 'Dubai', 'a 10:00 PM', '6:00 AM', 'April 23', 'mosques', 'Thursday', 'Emirati', '12,481', '105', 'Iraqi', 'Emirati', 'COVID-19', 'May 15', 'German', 'Kaiserhafen', 'Bremerhaven', 'Germany', 'August 3', 'German', 'Bremen', 'Germany', '11:00', 'August 1', 'July 21', 'Dutch', 'Rotterdam', 'Netherlands', 'the morning of July 20', 'Saturday', 'Kim Hock Tug 9', 'the Singapore Strait', 'Singapore', 'Vietnam', 'the span of', 'five hours', 'first', 'the Singapore Police Coast Guard', 'second', 'second', 'the Singapore Strait', 'the start of the year', 'British Mariner', 'January 8', 'the Singapore Strait', '31', '2019', 'just eight the year before', 'eight', 'December 2019', 'one', 'the Singapore Strait', 'August 4', 'Beirut', 'Lebanon', 'Asia', 'India', 'recent days', '700 tons', 'Chennai', '2015', 'South Korea', 'Newcastle', 'Australia', 'between 6,000 and 12,000 tons', 'Orica', 'more than three', 'Beirut', 'a half mile', 'less than two miles', 'Orica', 'Newcastle', '1995', 'Oklahoma City', 'August 4', 'Beirut', 'Lebanese', 'years', 'Chennai', 'Newcastle', 'Tuesday', 'Beirut', 'August 5', 'Beirut International Airport', 'August 4', 'Rafic Hariri International Airport', '10 kilometers', 'Emirates Airlines', 'Dubai', 'Beirut', 'July 9', 'the Port of Melbourne', 'Australia', '30 - 36 hours', 'COVID-19', 'North and NW', 'Melbourne', 'July 20', 'September 17', 'TIP', 'Mol Grandeur 0074E', 'Port of Nhava Sheva', 'India', 'Port Klang', 'Malaysia', 'Nhava Sheva', 'September 26', 'the Port of Chittagong', 'March 18', 'Valencia Noatum', '24 hours', 'the holiday', 'Freeport', 'at least 12', 'January 6', 'the Port of Hong Kong', 'around 0.5 days', 'February 3', 'the coming days', 'February 3', 'the Port of Xiamen', 'around 0.5 days', 'the next 2-days', 'the Port of Chittagong', 'February 12', 'Quay', 'Wynyard', 'Sydney', 'Tuesday', 'morning', 'T1', 'T3', 'T8', 'T2', 'Quay', 'Wynyard', 'Dubai', 'the Burj Al Arab', 'Friday', 'afternoon', 'first', 'May 25', 'Seaspan Lahore', 'the Port of Algeciras', 'the afternoon', 'May 24', 'USD 92,000', 'Wednesday', 'Hong Kong', 'the Gulf of Oman', 'the Strait of Hormuz', 'April 14', 'Iran', 'Islamic Revolutionary Guards Corps', 'IRGC', 'Hong Kong', 'SC', 'Taipei', 'Saudi Arabia', 'Iran', 'Ras al-Kuh', '22', 'Chinese', 'United Nations', 'Shanghai', 'Aoxing Ship Management', 'the US State Department', 'last month', 'Iran', 'Beijing', 'Taipei', 'Iran', 'Bandar Jask', 'Norwegian', 'last year', 'US', 'Iranian', 'Tuesday', 'one', 'the Strait of Hormuz', 'US', 'two', 'March 27', 'IRGC', 'April 2', 'the Strait of Hormuz', 'last year', 'US', 'Iran', 'Tehran', 'Washington', 'The United Kingdom Maritime Trade Operations', 'the Maritime Union of Australia', 'Fremantle Terminal', 'July 1 July', '13:00 to 15:00', 'May 9', 'British', 'French Port of Calais', 'Britain', 'British', 'Harwich and Felixstowe', 'Calais', 'ZHONG CHANG HE SHENG', 'Nickel Ore', 'the afternoon of August 27', 'the East China Sea', 'Senkaku Islands', 'Surigao Philippines', 'Lianyungang', 'China', 'Yellow', 'Chinese SAR', '14:00', 'August 28', 'Ningde', 'August 19', 'Nord Barents', 'IMO 9826445', 'COVID-19', 'Madrid', 'Manila', 'Munich', 'August 17', 'La Coruna', 'CLYMENE', 'Paranagua', 'May 26', 'Paranagua', 'May 25', 'Singapore', 'April 6', 'Tomini Destiny', 'Bangladesh', 'COVID-19', 'Last week', \"the Master's Authority\", 'the International Safety Management Code', 'the Chittagong Port', 'Federal Ems', 'St. Lawrence River', 'Massena', 'St. Lawrence County', 'September 10', 'Thunder Bay', 'Montreal', '17:30', 'December 31', 'Lintan', 'Szczecin', 'Poland', 'Salalah', 'Oman', 'March 30', 'the Philippine Bureau of Customs', '4,000', 'the Manila International Container Terminal', 'Pacific Roadlink Container Inc.', 'Manila North Harbour', 'COVID-19', 'Durban', 'Wednesday, 9 September', 'People Mover', 'Tansnat', 'Durban Transport', 'Korean', 'September 2', 'the Port of Busan', 'Typhoon Maysak', 'September 3', 'June 30', 'Busan Port', '21:00', 'June 29', '06:00', 'June 30', '12:00', 'August 11', 'Busan Port', '23:59', 'August 9', 'Jangmi', '21:30', 'August 10', '08:00', 'August 11', 'January 6', 'the Penrith-Katoomba-Lithgow', 'mid-November', 'January 4', 'more than two days', 'Sydney', 'Callao', 'DP World', 'Southern Pier', 'July 2', 'Jemur Island', 'the Straits of Malacca', 'Northern Sumatra to', 'Port Klang', 'the evening of', 'June 30', '9', 'Cambodia', '44', 'At least 26', 'Banteay Meanchey', 'seven', 'Kampong Thom', 'six', 'Pursat', 'Sihanoukville', 'Pailin', 'Kampong Chhnang', 'Stung Treng', 'Approximately 133,203', 'more than 594,388', '47,580', 'over 500', 'Phnom Penh', 'Approximately 912,333 acres', 'at least 951', 'Thursday, October 1', 'Tropical Storm Noul', 'at least 20', 'Phnom Penh', 'Pursat', 'Pailin', 'Banteay Meanchey', 'Battambang', 'Svay Rieng', 'Thbong Khmum', 'Oddar Meanchey', 'Siem Reap', 'Takeo', 'Kampong Speu', 'Mondulkiri', 'Sihanoukville', 'Koh Kong', 'Preah Vihear', 'Stung Treng', 'Kampong Cham', 'Kandal', 'Kampong Chhnang', 'Kampong Thom', 'At least 40', 'Kampong Speu Province', 'Kandal Province', 'Phnom Penh', 'August 12', 'Canadian', 'Halifax', 'the east coast', 'the Port of Montreal', 'last week', 'Montreal', 'The Canadian National Railway', 'Canadian', 'Montreal', 'Quebec', 'Canada', 'Midwestern', 'Southern United States', 'the Port of Chattogram', 'an estimated 50,000', 'FCL', '44,926', 'April 1', 'the coming days', 'India', 'COVID-19', 'September 22', 'the Port of Long Beach', 'Container', '3.25 days', 'February 2019', 'over 10 percent', 'Long Beach', 'Los Angeles', 'five or more days', 'August', '5.7 percent', 'the month before', 'September 22', 'the Port of Los Angeles', 'Container', '3.25 days', 'February 2019', 'over 10 percent', 'Long Beach', 'Los Angeles', 'five or more days', 'August', '5.7 percent', 'the month before', 'February 11', 'Port of Dalian', 'February 10', 'the afternoon of January 15', 'Kaohsiung', 'Taiwan', 'South Korea', 'Taiwanese', 'Changhua County', 'Taiwan Strait', 'Sheng Hang 189', 'Taiwan Strait', 'September 21', '10.50', 'Nantong', 'Shanghai', 'Fuzhou', 'Taiwan Strait', 'Tai Gang', 'CSBC', 'Kaohsiung', 'Taiwan', 'the early morning', 'January 6', 'January 9', 'Quanzhou', 'Fujian Province', 'January 12', 'July 8', 'German', 'Watergate', 'the Northern Harbour', 'Bremerhaven', 'Germany', '00:30', 'July 7', 'July 29', 'German', 'the Watergate Kaiserschleuse', 'Bremerhaven', 'Germany', '16:05', 'July 28', 'more than one hour', 'August 10', 'IMKE', 'Ogdensburg', 'New York State', 'St. Lawrence Seaway', 'August 8', 'August 9', 'August 30', 'the Kerch Strait', 'August 31', 'Mariupol', 'Barcelona', 'September 1', 'SURYA EXPRESS', 'West Papua', 'March 20', 'Gresik', 'West Papua', 'Indonesia', '1', '17', 'August 8', 'HONG PU 89', 'Huangpu River', 'Xuhui District', 'Shanghai', 'May 1', 'approximately 15:00', '6', 'White Tomony', 'IMO 9695810', 'AIS', 'the White Tomony', 'May 1 and 2', 'Ho Chi Minh City', 'Cam Pha Port', '8', 'the early morning of March 5', 'Quanzhou Bay', 'Fujian', 'China', '10', 'March 6', 'March 16', 'Dalian', 'Qingdao', 'COVID-19', 'Beijing', 'PEK', 'Dalian', 'Qingdao', 'March 16', 'Dalian', 'Qingdao', 'COVID-19', 'Beijing', 'PEK', 'Dalian', 'Qingdao', 'May 20', 'Roxas Boulevard', 'Katibak Drive', 'Quirino Avenue', 'May 20', 'Remedios Street', 'Manila', 'May 19', 'Roxas Boulevard', 'Port of Nhava Sheva', 'September 14', '23:00', 'Maricaban Island', 'Monday', 'morning', 'the M/V Moreta Venture', 'July 21', 'the Virginia Department of Labour and Industry', 'first', 'COVID-19', 'July 17', 'the weekend', 'the Gulf Cartel', 'Ciudad Victoria', 'Tamaulipas', 'recent days', 'Mexican', 'COVID-19', 'Mexico', 'the holidays', 'Mexico', 'COVID-19', 'the coming weeks', 'months', 'Mexico', 'Latin America', 'COVID-19', 'at least four', 'Storm Gloria', 'Spain', 'January 19', 'More than 30', 'Valencia', 'Mediterranean', 'the Balearic Islands', 'January 20', 'Catalonia', 'Girona', 'Barcelona', 'Catalonia', 'the national meteorology department', 'up to', '115 km per hour', 'eight-metre', 'Valencia', 'two', 'Japanese', 'Yokohama', 'TIMU', 'around midday', 'June 19', 'One', 'March 12', 'the Cebu Port Authority', 'Cebu', 'Philippines', 'Everstream Analytics', 'Sprint', 'Verizon', 'AT&T', 'Tampa', 'Miami', 'Atlanta', 'New York', 'Chicago', 'Houston', 'Los Angeles', 'hundreds', 'the U.S. Bureau of Industry and Security', 'BIS', 'Changzhou Guoguang Data Communications Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', '25 percent', 'the Port of Los Angeles', 'the Port of Long Beach', 'July 27', 'July 22', 'the Los Angeles-Long Beach Port Complex', 'a month', 'September 29', 'Sydney', 'Wentworth Street', 'Greenacre', 'Sydney', 'eight', 'Two', 'January 12', 'Hamburg', 'Valor', 'Korean', 'around 14.30', 'January 20', 'Ulsan', 'Korea', '6', 'Gampo Port', 'Ulsan', 'Carrie Lam', '12', 'Hong Kong', 'the U.S. Bureau of Industry and Security', 'BIS', 'China Communications Construction Company Guangzhou Waterway Bureau', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'China Communications Construction Company Group', 'the U.S. Bureau of Industry and Security', 'BIS', 'China Communications Construction Company Shanghai Waterway Bureau', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'China Communications Construction Company Group', 'the U.S. Bureau of Industry and Security', 'BIS', 'China Communications Construction Company Tianjin Waterway Bureau', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'China Communications Construction Company Group', 'United States', 'China', 'Hong Kong', 'China', 'US', 'This week', 'US', 'Chinese', 'Huawei', 'US', '38', 'Huawei', 'Huawei', 'US', 'Huawei', 'US', 'Huawei', 'US', 'Hong Kong’s', 'China', 'September 25', 'Hong Kong', 'China', 'Thursday', 'Hong Kong', 'the World Trade Organization', 'WTO', 'Wednesday', 'US', 'Hong Kong', 'France', 'Germany', 'Hong Kong', 'Tuesday', 'US', 'American', 'Chinese', 'Chinese', 'American', 'US', 'Chinese', 'US', 'January 2022', 'Monday', 'US', 'Donald Trump', 'US', 'China', 'China', 'US', 'Chinese', 'China', 'US', 'Huawei', 'US', 'this week', 'Huawei', 'Huawei', 'US', 'Huawei', 'Chinese', 'Huawei', 'American', 'China', 'Chinese', 'Beijing', 'Chinese', 'China', 'Hong Kong', 'September 25', 'China', 'Hong Kong', 'only around one percent', 'WTO', 'US', 'US', 'Chinese', 'US', 'Thursday', 'Chinese', 'at least ten', 'Hong Kong', 'Taiwan', 'China', 'Guangdong', 'August 23', 'two', \"last year's\", 'one', 'one year', 'Hong Kong', 'Hong Kong', 'June 30', 'Taiwan', 'Hong Kong', 'the Basic Law', 'recent weeks', 'July 29', 'Chinese', 'COVID-19', 'Brazil', 'Panamax', 'Rio Grande', 'Brazil', 'the Yantai Port', 'Northern China', 'COVID-19', 'February 27', 'China', 'Coronavirus', 'Wuhan', 'Hubei province', 'Zhoushan Ningbo', '60 hours', 'the second week of February', 'about 15 hours', 'the week', 'the Lunar Holiday', 'Ningo', 'Chinese', 'the coming weeks', 'March 13', 'the Port of Chittagong', 'Maersk', 'OOCL', 'Gold Star Line', 'March 11', '20', 'BICDA', 'USD 2.5 million', '2.25 million', '18', 'Chittagong', 'Chittagong Port', 'China', 'several months', 'China', '11-day', '14-day', 'some 3-4 days', 'July 12', 'August 29', 'Wuhu Ronghui Chemical Co., Ltd.', 'Jiujiang District', 'Wuhu City', '19', 'Sangqing Technology', 'Wuhu Ronghui Chemical Co.', 'the Hong Kong Ronghui Group', 'first', 'Anhui Province', 'RMB 1.38 billion', 'more than 800', '170,000', '60,000', '60,000', '50,000', '30,000', '10,000', '5,000', '40,000', '40,000', 'the Canada Industrial Relations Board', 'the Maritime Employers Association', '1,125', 'the Port of Montreal', 'the Maritime Employers Association', 'COVID-19', 'Melbourne', 'Thursday', 'three', 'at least one', 'the Blackburn South, Fernshaw', 'Tecoma', 'Belgrave', 'Croydon', 'Lilydale', 'Mount Evelyn', 'Mount Waverley', 'Dozens', 'up to 80,000', '250,000', 'Yarra Valley Water', 'up to 88', 'Saturday', 'morning', 'up to 100 miles', 'three', 'at least one', 'Yarra Valley Water', 'Melbourne', 'the next several days', 'the weekend of Saturday, September 27', 'Sunday, September 28', 'French', 'CMA CGM', 'CGM', 'Joel Gentil', 'The Ceva Logistics', 'Chinese', 'Shanghai', 'Shenzhen', 'Guangzhou', 'Ragnar Locker', 'CMA CGM', 'Sunday, September 28', 'CGM', 'two days', 'CMA CGM', 'fourth', 'three', 'recent years', '2017', 'Cosco', '2018', 'Mediterranean Shipping Co', '2020', '2017', 'NotPetya', 'Ukraine', '12 days', 'approximately $300 million', 'September 20 this year', 'CMA', 'July 6', 'CMA CGM', 'the Port of Chittagong', 'Bangladesh', 'July 6', 'April 8', 'August 12', 'Canadian National Railway', 'Halifax', 'the East Coast', 'the Port of Montreal', 'Halifax', 'the East Coast', 'the Port of Montreal', '60 miles', 'Canadian Pacific', 'July 10', 'the US Coast Guard', 'Whiskey', 'the Port of New York', 'United States', 'July 10', 'Tropical Storm Fay', 'June 9', 'the Port of Rotterdam', '2,020 kilograms', 'Guayaquil', 'Ecuador', 'Hungary', 'more than 151 million', 'EUR', 'June 6', 'Italian', 'the Port of Gioia Tauro', 'Italy', 'the afternoon', 'May 10', 'May 12', 'Gioia Tauro', 'European', 'Italy', 'the Just Cause Alliance Movement', 'two-day', 'Colon Province', 'Monday, February 3 through Tuesday, February 4', 'The Just Cause Alliance Movement', '52', 'Tenshp Maru No.1', 'Yatomi', 'Nagoya', 'Aichi Prefecture', '08.30', 'February 3', 'two', 'two', 'June 2', 'Bayhead Road', 'the Port of Durban', 'South Africa', 'DCT Pier 2', 'February 27', 'the Port of Vancouver', 'approximately 50', 'between February 6 and 9', 'the weekend', 'July 27', 'the Port of Los Angeles', 'July 27', 'June', 'March 17', 'DCT Pier 2', 'the Port of Durban', 'South Africa', 'March 17', '22:00', 'January 14', 'the Port of Ambarli', 'Turkey', '12-24 hours', 'January 23', 'Durban', '06:00', 'January 24', 'Pier 2', 'Durban', 'February 5', 'the Port of Durban', 'South Africa', 'first', 'first', 'August 12', 'Bayhead Road', 'the Pier 1', 'Port of Durban', 'May 25', 'Bayhead Road', 'the Pier 1', 'Port of Durban', 'Island view Terminal', 'Bayhead', 'Pier 1 and 2', 'May 21', 'Sao Paulo', 'Litoral Paulista', 'COVID-19', 'Santos', '61st', '65th', 'Caraguatatuba', 'Tamoios', 'Two', 'Ubatuba', 'Praia Grande', 'Peruibe\\nThe Padre Manoel da Nobrega Highway', 'April 17', 'Guayaquil', 'Ecuador', 'April 20', 'Wednesday', 'United States', 'State', 'Mike Pompeo', 'Congress', 'Hong Kong', 'China', 'China', 'National People’s Congress (NPC', 'NPC', 'Thursday', 'Chinese', 'Hong Kong', 'Hong Kong', 'Pompeo', 'US', 'Hong Kong', 'China', 'Last week', 'the US Senate', 'Chinese', 'NPC', 'late last week', 'the US Department of Commerce', '33', 'Chinese', 'Entity List', 'US', 'US', 'the commerce department', 'Chinese', 'Uighur Muslims', 'China', 'Xinjiang', 'Chinese', 'Wednesday', 'the US House of Representatives', 'Chinese', 'Xinjiang', 'Senate', 'US', 'US', 'China', 'COVID-19', 'two', 'Hong Kong', 'US', 'COVID-19', 'NPC', 'last week', 'US Senate', 'Chris Van Hollen', 'Pat Toomey', 'Hong Kong', 'NPC', 'Pompeo', 'Congress', 'Wednesday', 'annual', 'the state department', 'Congress', 'Hong Kong’s', 'last year', 'US', 'US', '1992', 'Hong Kong', 'China', 'US', 'Hong Kong’s', 'Donald Trump', 'Hong Kong', 'China', 'Hong Kong', 'Some 1,300', 'US', 'Hong Kong', 'US', '$66 billion', 'US', '2018', 'the NPC of the security', 'Thursday', 'Hong Kong', 'US', 'China', 'Hong Kong', 'Busan Port', '25%-30%', 'COVID-19', 'the Port of Incheon', 'COVID-19', 'July 5', 'the Association of Container Carriers', 'the Bay of Algeciras', 'the coming days', 'July 27', '28', 'Government', 'up to 4', '4.5 meters', 'San Antonio', 'the evening of June 11', 'Coronel', 'Barrier', 'late April 6 or early April 7', 'Beira', 'Mozambique', 'Durban', 'Godspeed', '20.45', 'March 9', 'the Port of Taipei Port', 'Taichung', 'Taiwan', 'One', 'Taipei', 'around 21.00', 'March 9', 'Nha Be River', 'Ho Chi Minh City', 'the early morning', 'April 2', 'April 2', 'Bomar Valour', 'North Lock', 'Brunsbuettel', 'Kiel Canal', '10x1 meters', '4 meters', 'Bremerhaven', 'Helsinki', 'the morning of', 'August 4', 'August 23', 'Oel Hind', 'Chittagong Port', 'August 23', '14:00', 'August 23', 'Chittagong', 'Maersk Sihanoukville', 'Chittagong', 'Bangladesh', 'the morning', 'May 6', 'Ceres', 'Kiel Canal', 'the afternoon', 'February 2', 'about an hour and a half', 'Hamburg', 'Kaliningrad Russia', 'Baltic Sea', 'Iranian', 'Xiamen Container Terminal', '05:30', 'June 9', 'March 28', 'Atlantic South', 'March 27', 'the Piraeus Anchorage', 'March 28', 'Mount Cameron', 'Chittagong', 'the afternoon of August 20', 'Pier 2', 'May 20', 'Hapag-Lloyd', 'Montpellier', '2017W', 'Durban Anchorage', '2', 'COVID-19', '14 days', 'Durban', 'June 15', 'Maersk Semarang', 'the Patrick Terminal at Port Botany', 'Sydney', 'Australia', 'the Port of Hong Kong', '15 days', 'June 22', 'Maasvlakte', 'Rotterdam', 'May 18', 'COVID-19', 'January 23', 'Northern Jupiter', 'January 4', 'the Malacca Strait', 'Singapore', 'January 23', 'June 2', 'Pedro Alvares Cabral', '14 days', 'the Brazilian National Health Surveillance Agency', 'ANVISA', 'May 29', 'the Port of Santos', 'Brazil', 'August 10', 'Ocean Abundance', 'Pier 2', 'North Harbour', 'Manila', 'early in the morning', 'the Philippine Coast Guard', 'PCG', 'MSC FABIENNE', 'around 1315', 'June 19', 'St. Lawrence River', 'Montreal', 'Montreal', 'Italy', 'June 19', 'early Jun 20', 'Montreal', 'June 21', 'February 18', 'Barranquilla', 'Colombia', 'Cartagena', 'around 15.00', '3', 'around 17.00', 'Barranquilla', '19.00', 'the same day', 'April 22', '14:45 UTC time', 'CGM', 'the Port of Houston', '4', '18:30', 'UTC', 'August 19', 'Mackinac Bridge', 'IMO 9689603', 'Baili Island', 'Hong Kong', 'Nansha Port', 'Guangdong Province', 'China', 'July 20', '03:40', 'Newark', 'IMO 9322504', 'Manila Anchorage', 'the Philippine Coast Guard', 'July 21', 'the morning', 'April 17', 'the Alboran Sea', 'Algiers', 'Algeria', 'Valencia', 'Spain', 'the next day', 'morning', 'early on the morning', 'April 19', 'up to 50', 'the Straight of Gibraltar area due', 'the Port Authority', 'Algeciras', 'the morning of March 17', '48 hours', 'June 16', 'Atlantique', 'the Port of Le Havre', 'Everstream Analytics', 'January 28', 'Le Havre', '17:00', 'the morning', 'August 18', 'Triton', 'BASF', 'Antwerp', 'January 22', 'Yang Ming-', 'Songa Iridium', 'December 27', 'Turkey', 'Coastal Safety', 'the Coastal Safety of Turkey', 'Uni Florida', 'Jebel Ali', 'the United Arab Emirates', 'July 30', 'Jebel Ali', 'July 27', 'Saudi Arabia', 'Jebel Ali', 'September 14', 'Conti', 'Montreal', 'QC', 'Axxess International Inc.', 'August 26', 'February 6', 'Maersk', 'MSC', 'Pacific', 'One', 'Stena Bulk', 'Maersk', 'Hapag-Lloyd', 'CMA-CGM', 'China', 'Hong Kong', 'India', 'Canada', 'the United States', 'West Africa', 'March 5', 'Coronavirus', 'China', 'Wuhan', 'the past weeks', 'Shanghai', 'Tianjin', 'Ningbo', 'China', 'China', 'first', 'another 3-6 weeks', 'Chinese', 'Shanghai', 'German', 'Bremen', 'Bremen', 'ZEAMARINE Schifffahrt GmbH & Co.', 'KG', 'March 15', 'May 8, 2020', 'August 21', 'at least 2', 'COVID-19', 'the Medcenter Container Terminal', 'the Port of Gioia Tauro', 'July 6', '48 hours', 'APM Terminals', 'the Port of Nhava Sheva', 'JNPT', 'COVID-19', 'Vessel', 'TIP', 'IEX', 'Thursday', 'the New York Times', '150', 'Saudi Arabia’s', '2019', 'COVID-19', 'King Faisal Specialist Hospital', 'Times', 'Riyadh', 'As many as 500', 'Europe', 'Saudi', 'Salman', 'Crown Prince Mohammed bin Salman', 'Red Sea', 'Jeddah', 'Thursday', 'Saudi', '3,287', 'COVID-19', '44', 'COVID-19', 'Saudi', 'Saudi', 'Tuesday', 'as many as 200,000', 'the next few weeks', 'Saudi', 'COVID-19', 'Thursday', 'Pakistani', 'April 15', 'some 1,900', 'Karachi Port', 'Afghanistan', 'COVID-19', 'Pakistani', 'another two weeks', 'April 14', 'Libyan', '180', 'Tunisia', 'several weeks', 'COVID-19', 'Libya', 'Tunisia', 'COVID-19', 'the Middle East', 'North Africa', 'June 23', 'Tamil Nadu', 'June 19 to June 30', 'the Port of Chennai', 'Wednesday, April 15', 'Russia', 'one-day', 'COVID-19', '3,388', 'April 15', '24,490', 'Moscow', '14,776', 'St Petersburg', '929', 'Russian', 'only 198', 'Vladimir Putin', 'fourth', 'April 15', 'Kremlin', 'more than half', 'Moscow', 'Putin', 'Moscow', 'Wednesday', 'metro', 'More than three million', 'Muscovites', 'Monday', 'some 900,000', 'Moscow', 'COVID-19', 'the coming two to three weeks', 'Russia', 'Russia', 'Moscow', 'March 30', 'COVID-19', 'Putin', 'the coming months', 'The International Monetary Fund', 'Russia', 'more than five percent', '2020', 'Kremlin', 'Russians', 'weekend', 'Orthodox Easter', 'COVID-19', 'Vietnam', 'COVID-19', 'between three and seven days old', 'Cai Lai', 'Cai Mep', 'Vung Tau', '71,144', 'COVID-19', '370', 'April 30', 'CPC Corp.', '380', 'CST', 'the Port of Kaohsiung', 'May 11', 'the Bao Shan No.', '2', 'September 6', 'Europoort', 'the Port of Rotterdam', 'Netherlands', 'September 6', 'Luxemburgweg', 'March 13', 'the Port of Salalah', 'February 17', 'March 17', 'January 6', 'Fremantle Patrick Terminals', '8 and 16 hours', 'January 20', 'September 18', '25-ton', 'the Maegok 3rd', 'Industrial Complex', 'Ulsan', '13:43', 'September 17', '10 minutes', '6', 'Lankan', 'Gulf of Aden', 'Shenzhen', 'Xiamen', 'Ningbo', 'Yangshan', 'China', 'June 25', 'Cotonou', 'the Oswald Quay', 'the Port of Hamburg', 'June 25', 'Ijmuiden', 'June 24', '6', 'COVID-19', 'June 23', 'the Port of Houston', 'March 23', 'COVID-19', 'June 23', 'the Port of Houston', 'March 23', 'COVID-19', 'Alamitos Beach', 'Long Beach', 'Wednesday', 'afternoon', '15 January', 'Villa Riviera', 'East Ocean Boulevard', 'Alamitos Avenue', 'Saturday', 'May 16', '200', 'Boyd St', 'Pedro St', 'Los Angeles', 'CA', 'Smoke Tokes', 'Saturday', 'At least 12', 'two', '6:30 PM PDT', 'Monday', 'The Los Angeles Police Department', 'the Bureau of Alcohol, Tobacco, Firearms', 'Smoke Tokes', 'Los Angeles', 'Smoke Tokes', '2016', 'over 160', '2016', 'two', 'August 19', 'Togolese', 'Crisnik', 'Ayvalik', 'Berdiansk', 'Mersin', 'August 17', 'Astro Perseus', 'Port Said', 'February 9', '08.00', '15.40', 'February 10', 'Ust-Luga Russia', 'China', 'Everstream Analytics', 'Norwegian', 'Jewel', 'Sydney Harbour', 'COVID-19', 'Quay', 'Singaporean', 'the Port of Manila', 'the Confederation of Truckers Association of the Philippines', 'January 13', 'Customs', 'around 500 kilograms', 'the Port of Hamburg', 'several days', 'the past weekend', 'One', 'Montenegro', '35,000', 'Handysize', 'Budva', 'Brazil', 'England', 'Hamburg', 'August 17', 'Dutch', 'Rotterdam', '2,100 kilograms', 'two', 'Ecuador', 'Costa Rica', 'the weekend', 'EUR', '157 million', 'first', 'Ecuador', 'the Port of Antwerp', 'second', 'Costa Rica', 'Europe', 'Antwerp', 'August 11', 'Hamburg', 'one', 'more than 1.5 tons', 'South America', 'CMA', 'Jean Gabriel', 'Hamburg', 'Poland', 'August 23', 'Hamburg', 'one', 'more than 1.8 tons', 'Peru', 'EUR', '400 million', 'Dutch', 'July 24', 'the Port of Rotterdam', 'two', '242 kilograms', 'EUR', '18 million', '30 kilograms', 'Rotterdam', 'Santos', 'Brazil', '212 kilograms', 'Germany', 'Rotterdam', 'Paranagua', 'Brazil', '11', 'July 23', 'about 500 kilograms', 'the Port of Rotterdam', 'Brazil', 'about 20', 'July 23', 'Ferro Chrome', 'Rotterdam', 'July 8', 'Dutch', 'Daan', 'the North Sea', 'Dagenham', '22:45', 'July 6', 'Park Quay', 'Rotterdam', 'the next day', '08:45', 'Dalian', 'Liaoning Province', 'August 27', 'Typhoon Bavi', 'May 18', 'the Port of Dalian', '17:20', 'May 17', 'the Port of Dalian', 'August 12', 'Dalian Port', 'between 05:50', '08:00', 'August 12', 'The Bureau of Meteorology', 'Morphett Vale', 'Tuesday night', 'Wednesday', 'Approximately 40', 'at least seven', 'Diamond Street', 'DCL GmbH Distribution Crew Logistics', 'September 21', 'Hamburg', 'District Court', 'Arabic-language', 'March 18', 'Dekheila Port', 'March 17', 'Authorities', 'Alexandria Port', 'May 25', 'the North Port', 'North Harbour', 'COVID-19', 'The Philippine Liner Shipping Association', 'PLSA', 'June 10', 'Durban MPT', 'Point Terminal', 'the Port of Durban', 'April 17', 'the Port of Callao', 'Peru', 'between 23:00 and 07:00', 'New York City Subway', 'Thursday', 'morning', '155', 'March 30', 'the Chattogram Customs House', 'Chattogram', 'Dhaka', '4,000', '4,700', 'Chattogram Port', 'Dhaka', 'the afternoon of March 28', 'the evening of March 29', '19 February', 'Santos', '06:00', 'June 8', 'June 5', 'June 10', 'afternoon', 'the next day', 'morning', 'April 20', 'the Port of Xiamen', '12:00 to 19:00', 'April 19', 'April 20', 'the coming hours', 'February 24', 'Port of Ningbo', 'the late afternoon', 'February 24', 'the morning', 'February 25', 'March 4', 'the Port of Ningbo', 'the evening of March 6', 'the evening of March 7', 'March 4', 'the Port of Qingdao', 'the evening of March 6', 'the evening of March 7', 'April 9', 'Sao Paulo', 'Santos', 'Guaruja', 'February 7', 'the Directorate General of Foreign Trade', 'the Department of Commerce', 'the Ministry of Commerce & Industry', '46/2015-2020', 'February 6', 'Notification No.21/2015-2020', 'Serial Number 52', '2', 'ITC', 'up to 10,000', 'MT', 'Chennai', 'March 31', 'the Horitculture Kadapa of the Government of Andhra Pradesh', '2', 'January 31', 'more than 6 hours', 'TfL', 'London', 'London', 'South Tottenham', 'Network Rail', 'Stratford', 'Richmond', 'Kentish Town West', 'London', 'the London Underground', 'Overground', 'Thursday', 'morning', 'the Jubilee Line', 'Wembley Park', 'Willesden Green', 'Neasden', 'Willesden Green', 'Stratford', 'Stanmore', 'Wembley Park', 'The Metropolitan Line', 'Wembley Park', 'Aldgate', 'Neasden', 'The London Overground Line', 'South Tottenham', 'Barking', 'South Tottenham', 'Gospel Oak', 'Network Rail', 'London', 'London Underground', 'Overground', 'Tuesday', 'morning', 'The Victoria Line', \"King's Cross St. Pancras\", 'Seven', 'the Metropolitan Line', 'Harrow', 'Hill', 'Aldgate', 'Finchley Road', 'London', 'South Tottenham', 'Network Rail', 'last week', 'Gospel Oak', 'South Tottenham', 'London', 'the London Underground', 'Overground', 'Friday', 'morning', 'the Piccadilly Line', 'Northfields', 'Heathrow', 'Boston Manor', 'the Victoria Line', 'Finsbury Park', \"Queen's Park and Elephant & Castle\", 'Lambeth North', 'The London Overground', 'South Tottenham', 'Network Rail', 'last week', 'Gospel Oak', 'South Tottenham', 'London', 'the London Underground', 'Overground', 'Thursday', 'morning', 'District Line', \"Earl's Court\", 'Wimbledon', 'Parsons Green', 'Edgware Road', \"Earl's Court\", 'the Metropolitan Line', 'Finchley Road', 'the TfL Rail Line', 'Liverpool Street', 'Shenfield', 'Ilford', 'the London Overground Line', 'South Tottenham', 'Network Rail', 'last week', 'Liverpool Street', 'Chingford / Enfield Town / Cheshunt', 'March 3', 'the Port of Durban', 'Birmingham New Street', 'Wolverhampton', 'West Coast', 'CrossCountry', 'London Northwestern Railway', 'Wales', 'West Midlands Railway', 'approximately 19:00', 'Crewe', 'Runcorn', 'West Coast', 'London Northwestern Railway', 'approximately 20:00', 'Crewe', 'Runcorn', 'West Coast', 'London Northwestern Railway', 'approximately 19:30', 'Surrey Quays', 'Clapham Junction', 'London', 'London Overground', '18:00', 'August 11', 'the Terminaux de Normandie MSC', 'the Port of Le Havre', '40-foot', 'the Port of Antwerp', 'COVID-19', '1.5', 'quay 1700 DP', '913', 'quay 1742', '869', 'quays 1700, 1742', '869', '913', 'office hours', '08:30 and 15:00 or', '16:00', 'June to September', 'South Asia', 'this year', 'India', 'approximately 850', 'this year’s monsoon season', 'millions', 'Wednesday', 'Delhi', 'Kerala', '61', 'at least nine', 'Andhra Pradesh', 'Assam', 'Bihar', 'Gujarat', 'Karnataka', 'Meghalaya', 'Rajasthan', 'Uttar Pradesh', 'the next several days', 'Haryana, Himachal Pradesh', 'Punjab,', 'Uttarakhand', 'Uttar Pradesh', 'Goa, Madhya Pradesh', 'Maharashtra, Rajasthan', 'Telangana', 'Bangladesh', 'more than 220', 'this season', 'as much as 40 percent', 'at least 33', '64', 'second', 'Bangladesh', 'Approximately six million', 'at least 40,000', 'this month', 'mid-September', 'More than 210', 'Nepal', 'this year', 'at least 40,000', 'dozens', 'dozens', 'Bagmati', 'at least 24', 'more than 50', '15', 'this year', 'COVID-19', 'Bangladesh', 'COVID-19', 'India', 'Nepal', 'Bangladesh', 'Khulna', 'Mongla', 'at least next summer', 'June', 'COVID-19', 'India', 'over 85 percent', 'up to 97 percent', 'Indian', 'Indian', 'Nepali', 'the monsoon season', 'DHL', 'India', 'Thursday', 'India', 'China', 'Hong Kong', 'Macao', 'ten days', 'Indian', 'China', 'DHL', 'India', 'the Port of Chennai', 'Chinese', 'Indira Gandhi International Airport', 'DEL', 'Delhi', 'Netaji Subhash', 'CCU', 'Kolkata', 'Mumbai', 'Jawaharlal', 'Nehru Port', 'FedEx', 'China', 'India', 'DHL', 'FedEx', 'earlier in', 'the week', 'India', 'China', 'June 15', 'Indian', 'Chinese', 'Indian', 'China', 'only around 30 percent', 'India', 'China', 'Chennai', 'China', 'Indian', 'India', 'China', 'July 31', 'the Tuas Terminal', 'the Port of Singapore', 'Phase 1 and 2', '24 hours', 'August 1, 2020', 'January 31, 2021', 'July 15', 'Crane 2', '11', 'the Newark Port', 'New Jersey', 'USA', 'January 22', 'Lian Feng', '18', 'the evening', 'January 19', 'Fujian', 'Guangdong', 'Taiwan Strait', 'ten', 'Lian Feng 18', 'January 20', 'Kaohsiung', 'Taiwan', 'Busan', 'the evening of January 12', 'Maritime Union', 'Australia', 'DP World', 'Fremantle', '24-hour', '15-month', '1-hour', 'Intelligence', 'Everstream Analytics', 'July 7', 'the Port of Le Havre', 'July 9', '12:00 - 15:00', 'two', 'Ocean and Crooke', 'Flatbush', 'Brooklyn', 'New York City', 'July 16', 'Dubai', 'Maritime City Authority', 'July 16', 'Dubai', 'the Dubai Health Authority', 'UAE', 'UAE', 'last week’s', 'UK', 'May 12', 'Dubai', 'COVID-19', 'no more than five', 'up to five', 'Mosques', 'Dubai', 'Abu Dhabi', 'Sharjah', 'COVID-19', 'UAE', '20,386', 'May 13', '206', 'late April', 'Dubai', 'COVID-19', 'March 16', 'Port of Durban', 'Pier 1', '05:39', 'March 16', 'January 24', 'Melbourne', 'January 23', 'Tullamarine', 'Victoria', 'Clark', 'nearly two dozen', 'the Port of Vancouver', \"Wet'suwet'en\", 'Coastal GasLink', 'Medica', 'San Salvador', 'Av Morazan', 'Sonsonate', 'Tropical Storm Amanda', 'up to 30', 'El Salvador', 'Aguilares', 'the Acelhuate River', 'Three', 'Bolivar', 'Bolivar', 'Las Tunas', 'At least 60', 'Approximately 11,179', 'San Salvador', 'La Libertad', 'Sonsonate', 'San Vicente', 'Evacuations', 'San Jeronimo', 'Metapan', 'At least 2,603', '582', 'Campos Verdes II', 'Lourdes', 'Six', 'La Libertad', 'Lake Victoria', '1964', 'East Africa', 'this month', 'recent days', '12 May', 'Brooklyn', 'New York City', 'Friday', 'night', '79', 'West Street', 'July 2', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '13:30 to 14:45', 'July 2', 'the Port of Durban', 'South Africa', 'between 11:00 and 13:00', 'February 19', 'shortly before 13:00', 'London Euston', 'England', 'Scotland', 'North Wembley', 'Arriva West Coast', 'Birmingham', 'Liverpool', 'Holyhead', 'Manchester', 'Glasgow', 'Edinburgh', 'London Northeastern Railway', 'Northampton', 'Milton Keynes', 'Stafford', 'Crewe', 'approximately 9:30 PM', 'tonight', 'February 20', 'Pier 1', 'the Port of Durban', 'South Africa', 'February 19', '06:00', 'February 21', 'March 2', 'the Port of Durban', 'South Africa', 'March 1', 'Eurogate', 'COVID-19', 'Hamburg', 'first', 'four', 'Thursday', 'Spain', 'Storm Gloria', '13', 'Mediterranean', 'Spain', 'Catalonia', 'Murcia', 'Andalusia', 'the Balearic Islands', 'Spain', 'Pedro Sanchez', 'Thursday', 'Friday', '60 miles per hour', 'Catalonia', 'Valencia', 'Spain', 'Thursday', 'Ebro River', 'Barcelona', 'Valencia', 'about two miles', 'Pyrenees', 'France', 'France', 'France', 'Aude', 'as much as five months', 'three days', 'more than 1,500', 'Sanchez', 'Gloria', 'France', 'Gloria', '1982', 'France', 'Spain', 'October 2019', 'France', 'Spain', 'Friday', 'United States', 'Donald Trump', 'US', 'Hong Kong', 'US', 'US', 'China', 'US', 'Hong Kong', 'Hong Kong’s', 'China', 'National People’s Congress (NPC', 'Thursday', 'US', 'Hong Kong’s', 'Friday', 'Hong Kong', 'China', 'Hong Kong', 'China', 'Hong Kong', 'Hong Kong', 'US', 'Hong Kong’s', 'US', 'Hong Kong', 'US', 'China', 'Autostradale', 'the Port of Genoa', '22:00 to 06:00', '5 minutes', 'the morning', 'late evening', 'Kwai Chung Container Terminal', 'Hong Kong', 'the early morning', 'January 10', 'about three hours', 'July 29', 'FedEx Corp', 'U.S.', 'Hong Kong', 'COVID-19', 'up to 10 days', 'Hong Kong', 'Hong Kong', 'July 29', 'Japan', 'Japan', 'China', 'Kobe', 'Osaka', 'Shanghai', '1985', 'January 7', 'sixteen', 'Manila', '06:22', 'January 7', 'Around 20', 'about five hours', 'Lakandula', 'Arabic', 'August 27', 'Al Mahjar', 'Jeddah', 'Makkah Province', 'Saudi Arabia', 'the afternoon', 'August 26', 'Arabic-language', 'February 20', 'Port Said', 'Egypt', 'the morning', 'February 20', 'two', 'July 16', 'German', 'the Hamburger Hafen und Logistik AG', 'HHLA', 'the Port of Hamburg', 'Germany', '21:20', 'August 14', 'August 30', 'Umm Ramool', 'Dubai', 'UAE', '18:48', 'August 30', 'August 16', 'North Coast Road', 'Alexandria', 'Egypt', 'the early morning', 'August 16', 'April 8', 'Portuguese', 'Rumo', 'the Port of Santos', 'Brazil', 'the evening', 'April 8', 'one', 'August 28', '4,000 square meters', 'Jeddah', 'August 28', 'July 21', 'Jebel Ali', 'Dubai', '09:00', 'three', 'September 10', 'Baoshan District', 'Shanghai', '22:00', 'September 9', 'September 5', 'the Jianghai West Road Industrial Park in Hai’an', 'Nantong', 'Dohwa-dong', 'Incheon', 'May 5', 'second', 'four', 'KRW 120 million', 'USD 98,044', 'EUR', '90,465', 'Yongdang-dong', 'Nam', 'Busan', '11:40', 'September 6', 'fourth', 'Typhoon Haishen', 'second', 'three', 'Tang Nhon Phu B', 'Ho Chi Minh City', '10', 'September 16', '04.00', 'Nusa Indah', 'Kapuk', 'Cengkareng', 'West Jakarta', 'September 23', 'evening', 'two hours later', 'September 20', 'Wilhelmsburg', 'Hamburg', 'Germany', '22:00', 'September 19', '2 hours', 'May 6', 'Bremen', 'May 6', 'Oryu', 'Incheon', 'around 05.07', 'August 31', '8.5 million', 'EUR', '6,036', 'May 15', 'Al Khalidiyah', 'Dammam Saudi Arabia', 'Alfreds Way', 'Barking', 'London', 'May 15', 'May 29', 'Port of Antwerp', 'Second', 'May 29', 'morning hours', 'about 2,500 tons', '5', 'September 1 east', 'Sri Lanka', 'Port Klang Malaysia', 'Ngava Sheva Mumbai', 'India', 'Colombo', 'Sri Lanka', '05:30', 'September 5', 'January 10', 'the Port of Santos', '12:50', 'January 10', '16:00', 'Portao 4', 'Avenida Agusto Barata', 'the Reta da Alemoa', 'Antonio Alves Freire', 'July 15', 'Dutch', 'the Port of Rotterdam', 'Netherlands', '14:45', 'July 15', 'August 5', 'LPG', 'Antwerp', 'Moritz', 'Schulte LPG tanker', 'August 4', '1', 'July 22', 'KM', 'around 15:30', 'July 21', 'Java', 'Jakarta', 'Indonesia', '26', 'August 17', 'Scheldelaan', 'Antwerp', 'the evening of', 'August 17', 'January 24', '9548586', 'the Gulf of Aden', 'Yemen', 'Singapore', 'Suez', '3 ½ hours', 'around 23:00', 'January 23', 'Moreta Venture', 'around 05.00', 'July 20', 'Marikaban Island', 'Batangas', 'Manila', 'Marikaban', 'Matikaban', 'Markiban', '03:30', 'July 20', 'Batangas', 'Manila', 'August 4', 'LPG', 'Moritz Schulte', 'the Port of Antwerp', 'Belgium', 'the morning of August 4', 'One', 'Izumo', 'Chittagong', 'the afternoon of', 'July 1', 'China', 'around 17:00', 'Cap Jackson', 'Balboa', 'Panama', 'July 29', 'Manzanillo', 'Mexico', 'At least one', 'one', '04:30', 'August 2', 'early on the morning', 'August 18', 'Tarragona', 'Spain', 'about 10 hours', '13:30', 'Valencia', 'Barcelona', 'August 25', 'London', 'South Woodford', 'August 23', 'two', 'September 22', 'around 17:54', 'two', 'Margomulyo Jaya', 'Tandes, Surabaya', 'the El Dally Pharmacy', 'Port Fouad City', 'Saturday', 'Civil Protection Forces', 'El-Mosheer Ismail Ali', 'August 31', '4', 'Usmanabad', 'Karachi', 'August 20', 'the Al Khodaryah Industrial City', 'Dammam', 'February 1', 'San Miguel Corporation', 'Tomos Claudio', 'Pandacan', 'Manila', 'July 31', 'Narra', 'Bambang Streets', 'Tondo', 'Manila', 'Philippines', 'July 29', 'P19 million', 'EUR', 'USD 387,226', 'March 31', 'the Khang Minh Hy Logistics Joint Stock Company', 'Duong Bach Dang', '2', 'Ho Chi Minh City', 'March 31', '2 hours', 'PLG', 'Moritz Schulte', 'Antwerp', 'ESSO Refinery', 'the morning', 'August 4', 'one', 'Antwerp', 'August 2', 'UK', 'Thai', 'Bangpakaew', 'around 15:30', 'June 16', 'Vung Tau', 'Ho Chi Minh City', '18:30', 'September 22', 'Aramex International Morocco SA', 'Casablanca', 'the Dubai Financial Market', 'Dutch', 'the Maritiem Buitenmuseum', 'Maritime Museum', 'Rotterdam', 'Leuvehaven', 'August 17', '15:35', 'August 17', 'Ramales de la Victoria', 'March 3', 'Rua', 'Macuco', 'Santos', 'March 3', 'the evening of March 3', 'August 31', 'Inmaconsa', 'Daule', 'Guayaquil', 'Ecuador', 'March 9', '18', 'Jalan Besut', 'Singapore', 'Pioneer', 'Chasen Logistics', 'September 22', 'West Avenue', 'Rochester', 'New York', 'this afternoon', 'two', 'The Rochester Fire Department', '20:00', 'January 28', 'the Puerto Panul Terminal', 'the Port of San Antonio', 'approximately 40 minutes', 'Queensland', 'Sunshine Coast', 'February 13', 'Brisbane', 'Gympie', 'Carseldine', 'McKenzie', 'Belmont', 'Ground Rafting Road', 'Tilley Road', 'Moreton Bay Road', '•\\tParadise Road', 'Gardens Drive', 'Radius Drive', 'Larapinta\\n•', 'Illaweena St', 'Beaudesert Road to Wembly Road', 'Gold Coast', 'Alan Wilke Bridge', 'Yatala\\n•\\tSandy Creek Road', 'Darlinton Drive', 'Peachey Road', 'Equestrian', 'Gerra Court', 'Clagiraba\\n•\\tClagiraba Road', 'Thendara Drive', 'Mount Nathan', 'Boonah Rathdowney Road', 'Road', 'All Saints Anglican School', 'Breakwater Road', 'Merrimac', 'Mark Way', 'Gold Coast Springbrook Road', 'Franklin Drive', 'Bonogin Road', 'Gunsynd Drive', 'Bomogin Creek', 'Mudgeeraba', 'Mudgeeraba', 'Kingsmore Boulevard', 'Tallebudgera Creek Road', 'Tallebudgera Valley\\n', 'Tallebudgera Creek Bridge', 'Tallebudgera', '•\\tDalton Road', 'Tallebudgera Creek Road', 'Dalton Road', 'Tallebudgera Valley\\n', 'Tallebudgera Creek Road', 'Araluen Road', 'Tallebudgera Valley\\n', 'Len Dickfos Road', 'Tallebudgera Valley', 'Sunshine Coast', 'Mooloolah Valley', 'Sunshine Motorway', 'Road and Vise Road', 'Forest Glen', 'Nambour', 'David Low Way', 'Tanah Street East', 'Mount Coolum', 'Beddington Road', 'Doonan\\n•\\tEumundi Noosa Road', 'Tewantin\\n•\\tMcKinnon Drive', 'Ringtail Creek', 'January 23', 'Catalonia', 'Gloria', '76', 'January 23', 'Girona', 'Barcelona', 'Lleida', 'Tarragona', 'September 22', 'State Highway 288', 'Houston', 'Tropical Storm Beta’s', 'September 21', 'September 22', 'State Highway 290', 'Houston', 'Tropical Storm Beta', 'September 21', 'January 2', 'Indonesia', 'Jakarta', 'Chinese', 'August 25', 'Jamaica', 'National Works Agency', 'Hurricane Laura', 'the Chelsea Avenue', 'Mandela Terrace', 'Marverley', 'Kingston', 'the Guava Ridge', 'Cooperidge', 'Papine', 'Bull Bay', 'St. Andrew', 'the Redgate to Washfoot Gully Roadway', 'St. Elizabeth', 'September 22', 'Interstate 45', 'Houston', 'Tropical Storm Beta’s', 'September 21', 'September 22', 'Interstate 69', 'Houston', 'Tropical Storm Beta’s', 'September 21', 'January 21', 'DP World Southampton', '04.00', 'January 15', 'the Port of Houston', 'the end of this week', 'Wang Jin-pyng', 'Kuomintang', 'KMT', 'Straits Forum', 'Xiamen', \"East China's\", 'Fujian Province', '19 September', 'Clark College', 'Fort Vancouver', 'Wednesday, January 15', 'three day', 'Thursday, January 16', 'Four', '12', 'last month', 'Chinese', 'Taiwan', 'Shenzhen', 'CGT', 'seven', 'Friday, January 24', 'La Rochelle', 'Lorient', 'Marseille', 'Le Havre', 'Dunkirk', 'Rouen, Nantes-Saint-Nazaire', 'Bordeaux', 'Calais, Cherbourg, Saint-Malo', 'Bastia', 'Ajaccio', 'Singapore', 'PSA International', 'Indian', 'Indian', 'India', 'Ministry of Shipping', 'India', 'first', 'PSA', 'four', 'India', 'Mumbai', 'Jawaharlal Nehru Port Trust', 'Bahamas', 'the Freeport Harbour Company (FHC', '05:00', 'April 6', 'Kurt Kluxen KG', 'September 2', 'Hamburg', 'District Court', 'Germany', '1968', '929348113', 'September 8', 'CSX', 'four', 'the Oak Point Rail Yard', 'New York', 'United States', '17:16', 'September 8', 'North Charleston', 'At least 12', 'February 19', 'Zhengzhou', 'February 16', 'first', 'Henan', 'Belt and Road', 'Lunar New Year', '41', 'daily', '615 tons', 'first', 'China', 'Europe', 'February 14', 'Dongguan', 'Guangdong', 'Zhejiang', 'Central Asia', 'earlier in the week', 'Jinhua city', '82', 'February 26', 'Shijiazhuang', 'China', 'Hebei province', 'February 26', '42', '660 tons', 'Tashkent', 'Uzbekistan', 'about 12 days', 'Chinese', 'Belt and Road', 'first', 'China', 'Europe', 'February 14', 'Dongguan', 'Guangdong', 'Shijiazhuang', 'Russia', 'Belarus', 'Central Asia', 'March 2020', 'German', 'BBC Ursa', 'the afternoon', 'February 7', 'Saronic Gulf', 'Piraeus', 'Piraeus', 'Port Marghera', 'Italy', 'Piraeus', 'Fridays', 'Australia', 'today', 'Sydney', 'Brisbane', 'Perth', 'Melbourne', 'Everstream Analytics', 'Fridays', '25 September', 'Cape Town', 'Durban', 'Pretoria', 'Fridays', '25 September', 'nearly 500', 'New York City', 'Washington', 'D.C.', 'Philadelphia', 'Betsy Ross', 'New York City Waterway', 'Front St', 'Wave St. Firefighters', 'earlier this morning', 'the United Kingdom', 'the European Union', 'UK', 'EU', '11:00 PM', 'London', 'Friday, January 31', 'Boris Johnson', 'the evening', 'Brexit', 'Parliament Square', 'Westminster', 'Friday', 'evening', 'Edinburgh', 'Scottish', 'several thousand', 'Brexit', 'UK', 'post-Brexit', 'UK', 'EU', 'December 31, 2020', 'EU', 'Conservative', 'December', 'UK', 'EU', 'EU', 'the end of this year', 'Brexit', 'US', 'UK', 'this year', 'British', 'blocs', 'UK', 'Brexit', 'the coming weeks', 'months', 'Brexit', 'London', 'Trafalgar Square', 'Scotland', 'Northern Ireland', 'EU', 'republican', 'UK', 'post-Brexit', 'UK', 'March 19', 'Fuzhou', 'March 19', 'April 22', 'Fuzhou Port', '17:20', 'April 19', '05:30', 'April 20', 'Illawarra', 'Bateman', 'Macquarie Coast', 'Hunter Coast', 'Sydney Coast', 'Eden Coast', 'Byron Coast', 'Macquarie Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'September 12', 'Le Havre', 'France', 'about 3:50 p.m.', '30-ton', 'argon', 'V/Line', 'Geelong', 'Warrnambool', 'January 29', 'Melbourne', 'Australia', 'Rimini', 'Kiel Canal', 'Brunsbuttel', 'the evening', 'May 17', 'Brunsbuttel', 'Rotterdam', 'ETA', 'May 19', 'KM EL No.2', '14', 'January 12', 'Jakarta', 'Pontianak', 'Kalimantan', '14', 'January 11', 'Belitung', 'Java Sea', 'Rix Amethyst', 'Rudkobing', 'Langeland Island', 'Denmark', 'the afternoon', 'May 18', 'Bremen', 'Germany', 'the Rudkobing Bridge', 'Dong Myung Ace', 'Tobishima', 'Nagoya', 'around 05:00', 'August 4', 'Funabashi', 'Japan', 'around 07:00', 'January 28', 'Belgium', 'FGTB', 'January 28', 'the Port of Antwerp', 'Watergates', 'the morning', 'around 30', '60', 'the day', '24 hours', 'April 15', 'Spanish', 'six', 'Ecuador', 'Tulcan', 'Nueva Loja', 'Zamora', 'Huaquillas', 'Alóag', 'Guayaquil', 'Greek', 'January 25', 'more than a ton', 'Lebanon', 'Libya', '1.25 tons', 'January 16', 'Greece', 'Piraeus', 'the Port of Misrata', 'the U.S. Bureau of Industry and Security', 'BIS', 'Guangzhou', 'Guangyou Communications Equipment Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'the U.S. Bureau of Industry and Security', 'BIS', 'Guangzhou', 'Haige Communication Group Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'the U.S. Bureau of Industry and Security', 'BIS', 'Guangzhou Hongyu Technology Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'May 29', 'the Guangzhou', 'Huangpu Cali Terminal', 'July 1', 'the first half of the month of July', 'the U.S. Bureau of Industry and Security', 'BIS', 'Guangzhou', 'Tongguang Communication Technology Co.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'Spanish', 'May 6', '250kg', 'the Port of Valencia', 'South American', 'Valencia', 'EUR', '8.5 million', 'HAM Rail Port GmbH', 'September 2', 'Hamburg', 'District Court', 'September 25', 'the Hamburg Port Authority', 'HPA', 'September 25', 'Hamburg', 'September 22', 'Hanwha Total Petrochemical', '3', 'Daesan', 'Hapag Lloyd', 'Atlantic Loop 1', 'May 28', 'June 16', 'Rotterdam', 'Norfolk', 'Rotterdam', 'May 28', 'Hamburg', 'June 1', 'Antwerp', 'June 4', 'London Gateway', 'June 5', 'Halifax', 'New York', 'Philadelphia', 'June 16', 'Philadelphia', 'New York', 'London Gateway', 'Antwerp', 'Hamburg', 'Rotterdam', 'Hapag Lloyd', 'Atlantic Loop 1', 'Weeks 26 and 29', 'June 24', 'July 17', 'London', 'Veracruz', 'London', 'June 24, July 15', 'Antwerp', 'Hamburg', 'Le Havre', 'July 17, August 7', 'Houston', 'New Orleans', 'London', 'Hapag Lloyd', 'between July 13 and 27', 'Manzanillo', 'between June 16 and 30', 'Keelung', 'Lazaro Cardenas', 'Keelung', 'Hong Kong', 'Shanghai', 'Ningbo', 'Busan\\nEastbound: Keelung', 'Hong Kong', 'Yantian', 'Shanghai', 'Ningbo', 'Lazaro Cardenas', 'the AN2', 'July 8', '15', '22', 'Buenaventura', 'June 17', '24', 'July 1', 'Shanghai', 'AME1', 'July 29', 'August 5', '12', 'Callao Westbound', 'June 20, 27', 'July 4', 'Ningbo Eastbound', 'July 8', '15', '22', 'Callao', 'July 11', '18', '25', 'San Antonio', 'July 16, 23', 'July 18, 25', 'August 1', 'Lirquen', 'July 20,', '27', 'August 3', 'San Antonio', 'July 22', '29', 'August 5', 'Puerto Angamos', 'July 25, August 1', '8)', 'Callao', 'July 29', 'August 5', '12', 'Manzanillo', 'August 5', '12', '19', 'Tokyo', 'August 22', '29', 'September 5', 'Busan', 'August 24, 31, September 7', 'Shanghai', 'August 26, September 2, 9', 'Xiamen', 'August 29, September 5', '12', 'Shekou', 'August 31, September 7', '14', 'Hong Kong', 'September 1, 8', '15', 'Ningbo', 'September 4, 11', '18', 'Shanghai', 'June 17', '24', 'July 1', 'Xiamen', 'June 20,', '27', 'July 4', 'Shekou', 'June 22', '29', 'July 6', 'Hong Kong', 'June 23, 30, July 7', 'Ningbo', 'June 26, July 3', 'Busan', 'June 28, July 5', '12', 'Manzanillo', 'July 14, 21', '28', 'Lazaro Cardenas', 'July 16, 23', 'Rodman', 'July 20, 27', 'August 3', 'Buenaventura', 'July 22', '29', 'August 5', 'Callao', 'July 25, August 1', 'San Antonio', 'July 30, August 6', '13', 'August 1, 8', '15', 'Lirquen', 'August 3, 10', 'Angamos', 'August 8', '15', '22', 'Callao', 'July 29', 'August 5', '12', 'Guayaquil', 'August 1, 8', '15', 'Buenaventura', 'August 6, 13', '20', 'Rodman', 'August 8', '15', '22', 'Lazaro Cardenas', 'August 13', '20', '27', 'Manzanillo', 'August 14, 21', '28', 'Ensenada', 'August 18, 25, September 1', 'August 31, September 7', 'Busan', 'September 2, 9,', '16', 'Ningbo', 'September 5', '12', '19', 'Shanghai', 'September 7', '14', 'Qingdao', 'September 9, 16', '23', 'Eastbound AME1', 'Ningbo', 'June 20, 27', 'July 4', 'Shanghai', 'June 22', '29', 'July 6', 'Qingdao', 'June 24, July 1', 'Busan', 'June 28, July 5', '12', 'July 2, 9', '16', 'Ensenada', 'July 15,', '22', '29', 'Manzanillo', 'July 18, 25', 'August 1', 'Puerto Quetzal', 'July 21', '28', 'August 4', 'Rodman', 'July 24, 31', 'Buenaventura', 'July 26, August 2, 9', 'Callao', 'July 29', 'August 5', '12', 'Guayaquil', 'August 1, 8', '15', 'May 5', 'Hapag-Lloyd', 'Week 17, 19', '21', 'ASE', 'COVID-19', 'week 17', 'Busan', 'South Korea', 'approximately April 23', 'week 17', 'Busan', 'approximately April 26', 'Hapag-Lloyd', 'weeks', 'ASE', 'Shanghai', 'Ningbo', 'Hong Kong', 'Shekou', 'Singapore', 'Sepetiba', 'Buenos Aires', 'Singapore', 'Hong Kong', 'Shanghai', 'Ningbo', 'Shekou', 'Yantian', 'Hong Kong', 'Singapore', 'Buenos Aires', 'Rio Grande', 'Port Kelang', 'Singapore', 'Hong Kong', 'Hapag-Lloyd', '4', 'UTE 22', 'Conosur', 'CON', 'between May 27 and June 2', 'May 27', 'May 29', 'Rio de Janeiro', 'May 31', 'Santos', 'June 2', 'San Vicente', 'May 18', 'the Port of San Antonio', 'June 12', 'Callo', 'June 19', 'July 8', 'Hapag-Lloyd', 'week 32', 'COVID-19', 'Shanghai', 'Ningbo', 'Kaohsiung', 'Shekou', 'Port Kelang', 'Jebel Al >', 'Hamad', 'Umm Qasr\\nEastbound', 'Hamad', 'Jebel Al >', 'Port Kelang', 'Shekou', 'Xiamen', 'Kaohsiung', 'Ningbo', 'Shanghai', 'July 8', 'Hapag-Lloyd', 'week 33', 'COVID-19', 'Hamburg', 'Rotterdam', 'Antwerp', 'London Gateway >', 'New York', 'Philadelphia', 'Philadelphia', 'New York', 'London Gateway', 'Antwerp', 'Hamburg', 'Rotterdam', 'COVID-19', 'Hapag-Lloyd', 'Atlantic Loop 4', '20', 'London Gateway', 'Antwerp', 'Hamburg', 'Le Havre', 'Houston', 'New Orleans', 'Houston', 'July 8', 'Hapag-Lloyd', 'AL4 week 32', 'COVID-19', 'Hamburg', 'Antwerp', 'London', 'New Orleans', 'Houston', 'Tuxpan', 'Houston', 'New Orleans', 'Le Havre', 'London Gateway', 'Antwerp', 'Hamburg', 'COVID-19', 'Hapag-Lloyd', 'Atlantic Loop 4', '20', 'London Gateway', 'Antwerp', 'Hamburg', 'Le Havre', 'Houston', 'New Orleans', 'Houston', 'COVID-19', 'Hapag-Lloyd', 'Atlantic Loop 4', 'week-20', 'London Gateway', 'Antwerp', 'Hamburg', 'Le Havre', 'Houston', 'New Orleans', 'Houston', 'July 8', 'Asia', 'North Europe', 'COVID-19', 'Le Havre', 'Hamburg', 'Singapore', 'Ningbo', 'Yantian', 'Hapag-Lloyd', 'Gothenburg Express', 'GTE', 'week 21', 'COVID-19', 'Hamburg', 'Hamburg', 'COVID-19', 'Hapag-Lloyd', 'Indian Ocean 2', 'IO2', 'Port Qasim', 'May 7', 'May 14', 'May 7', 'May 14', 'Mundra', 'May 13', 'May 20', 'Hazira', 'Nhava Sheva', 'Djibouti', 'Dunkirk', 'Antwerp', 'Rotterdam', 'Hapag-Lloyd', 'the weeks', 'July 8', 'Hapag-Lloyd', 'MD1 week 32 and week 35', 'COVID-19', 'Shanghai', 'Ningbo', 'Hong Kong', 'Shekou', 'Singapore', 'July 8', 'Hapag-Lloyd', 'week 34', 'COVID-19', 'Shanghai', 'Ningbo', 'Kaohsiung', 'Hong Kong', 'Shekou', 'Singapore', 'La Spezia', 'July 8', 'Hapag-Lloyd', 'week 34', 'COVID-19', 'Shanghai', 'Ningbo', 'Kaohsiung', 'Hong Kong', 'Shekou', 'Singapore', 'May 8', 'Hapag-Lloyd', 'week-22', 'COVID-19', 'Livorno', 'May 20', 'Genoa', 'May 22', 'Barcelona', 'May 24', 'Valencia', 'May 26', 'Cartagena', 'Veracruz', 'Houston', 'New Orleans', 'Hapag-Lloyd MPS', 'Livorno', 'Genoa', 'Barcelona', 'Valencia', 'Cartagena', 'Hapag-Lloyd', '5', 'South East', 'IEX', 'COVID-19', 'Rotterdam', 'May 24', 'London Gateway', 'Hamburg', 'Antwerp', 'Le Havre >', 'Vizag', 'Krishnapatnam', 'Hapag-Lloyd', 'Hapag-Lloyd', '3', 'South East', 'IEX', 'COVID-19', 'Vizag', 'May 24', '+ 28', 'Krishnapatnam', 'Antwerp', 'Hamburg', 'London', 'Rotterdam', 'June 20', 'July 8', 'Hapag-Lloyd', 'week 33 and week 35', 'COVID-19', 'Hong Kong', 'Yantian', 'Shanghai', 'Seattle', 'Seattle', 'Kaohsiung', 'Hong Kong', 'Yantian', 'Shanghai', 'July 8', 'Hapag-Lloyd', 'week 33 and week 35', 'COVID-19', 'Ningbo', 'Shanghai', 'Tacoma', 'Vancouver', 'Tacoma', 'Prince Rupert', 'Shanghai', 'Ningbo', 'July 8', 'Hapag-Lloyd', 'week 34', 'COVID-19', 'Singapore', 'Vung Tau', 'Los Angeles', 'Oakland', 'Oakland', 'Los Angeles', 'Vung Tau >', 'Singapore', 'Kelang', 'July 8', 'Hapag-Lloyd', 'week 34', 'COVID-19', 'Los Angeles', 'Busan', 'Shanghai', 'Ningbo', 'Shanghai', 'Ningbo', 'Los Angeles', 'Hapag-Lloyd', 'Sweden', 'Denmark Express', 'week 21', 'Gothenburg', 'Hamburg', 'Hamburg', 'COVID-19', 'Hapag-Lloyd', 'week-22', 'the Gulf Caribbean Service', 'GCS', 'Houston', 'May 28', 'Altamira', 'May 31', 'Veracruz', 'June 1', 'Tomas', 'June 7', 'Puerto Cortes', 'June 8)', 'Puerto Limon', 'June 12', 'Manzanillo', 'PA', 'June 14', 'Cartagena', 'June 16', 'Caucedo', 'June 19', 'San Juan', 'June 27', 'Cartagena', 'June 29', 'Manzanillo', 'PA', 'June 30', 'Puerto Limon', 'July 3', 'Santo Tomas', 'July 5', 'Puerto Cortes', 'July 9', 'Hapag-Lloyd', 'Minerva', '2023', 'SB/NB', 'May 5', 'Hapag-Lloyd', 'week-13', 'week-24', 'SEC', 'South America - East Coast', 'COVID-19', 'week-13', 'Buenos Aires', 'May 16', 'Rio Grande', 'May 19', 'Itapoa', 'May 21', 'Santos', 'May 23', 'Rio de Janeiro', 'May 25', 'Salvador', 'May 28', 'May 31', 'New York City', 'June 9', 'Philadelphia', 'June 11', 'Norfolk', 'June 13', 'Charleston', 'June 15', 'Jacksonville', 'June 16', 'Port Everglades', 'June 18', 'Week 23', 'week 21', 'week 25', 'COVID-19', 'Hapag-Lloyd', 'week-17', 'week-21', 'South America', 'East Coast - Caribbean', 'SCS', 'Suape', 'May 13', 'May 18', 'May 20', 'May 21', 'Santos', 'May 22', 'Rio Grande', 'May 24', 'May 27', 'Cartagena', 'June 5', 'June 7', 'Veracruz', 'June 11', 'Hapag-Lloyd', 'SCS', 'week-18 NB', 'week-22', 'the Maersk Yangtze', 'May 5', 'Hapag-Lloyd', 'week-19', 'US Gulf - South America East Coast Loop 1', 'COVID-19', 'Veracruz', 'May 7', 'Altamira', 'May 8)', 'Houston', 'May 10', 'New Orleans', 'May 13', 'Cartagena', 'May 18', 'Suape', 'May 27', 'Santos', 'June 1', 'Buenos Aires', 'June 5', 'Montevideo', 'June 8)', 'Rio Grande', 'June 10', 'Navegantes', 'June 12', 'Rio de Janeiro', 'June 16', 'Cartagena', 'June 27', 'Hapag-Lloyd', 'week 20', 'Tempanos', 'COVID-19', 'Hapag-Lloyd', 'week-20', 'the Gulf Caribbean Service', 'GCS', 'Houston', 'May 14', 'Altamira', 'May 17', 'Veracruz', 'May 18', 'Tomas', 'May 24', 'Puerto Cortes', 'May 25', 'Puerto Limon', 'May 29', 'Manzanillo', 'May 31', 'Cartagena', 'June 2', 'Caucedo', 'June 5', 'San Juan', 'June 8)', 'Cartagena', 'June 12', 'Manzanillo', 'PA', 'June 15', 'Puerto Limon', 'June 16', 'Santo Tomas', 'June 19', 'Puerto Cortes', 'June 21', 'Hapag-Lloyd', 'week-21', '2021', 'SB/NB', 'COVID-19', 'Hapag-Lloyd', 'week-23', 'week-27', 'South America', 'East Coast - Caribbean', 'SCS', 'Veracruz', 'June 4', 'June 6', 'Houston', 'June 8)', 'June 16', 'June 24', 'Santos', 'June 28', 'June 30', 'July 1', 'July 2', 'Rio Grande', 'July 5', 'July 8)', 'the Port of Cartagena', 'July 17', 'Hapag-Lloyd', 'SCS', 'week-24', 'SB', 'week-28 NB', 'the MSC Methoni', 'COVID-19', 'Hapag-Lloyd', 'Mediterranean Pacific Service', 'MPS', 'week-25', 'June 11', 'Seattle', 'June 11', 'June 13', 'Oakland', 'June 18', 'Long Beach', 'June 20', 'Manzanillo', 'MX', 'June 24', 'Manzanillo', 'July 2', 'Cartagena', 'July 5', 'COVID-19', 'Hapag-Lloyd', 'Mediterranean Pacific Service', 'MPS', 'week-25', 'June 11', 'Seattle', 'June 11', 'June 13', 'Oakland', 'June 18', 'Long Beach', 'June 20', 'Manzanillo', 'MX', 'June 24', 'Manzanillo', 'July 2', 'Cartagena', 'July 5', 'US', 'Canadian', 'west coast', 'NYK', 'Caucedo', 'Mediterranean', 'Cartagena', 'MGX', 'July 4', 'Hapag-Lloyd', 'Atlantic Loop 5', 'week-27', 'June 30', 'Oakland', 'Los Angeles', 'Balboa', 'Cartagena', 'Caucedo', 'June 30', 'Le Havre', 'July 1', 'Rotterdam', 'July 3', 'Hamburg', 'July 5', 'Antwerp', 'July 7', 'Eastbound', 'Hamburg', 'Antwerp', 'Cartagena', 'Los Angeles', 'August 3', 'Oakland', 'Seattle', 'Hapag Lloyd', 'Savannah', 'July 2 and 9', 'New York', 'Charleston', 'Savannah', 'July 2 & 9', 'Le Havre', 'London Gateway', 'Rotterdam', 'Hamburg', 'Hapag-Lloyd', 'CMA', 'CGM Cochin', 'Hapag-Lloyd JCS', '0PP64W1MA', 'Singapore', 'May 27', 'June 6', 'May 26', 'Hapag-Lloyd', 'week 23', 'COVID-19', 'Busan', 'approximately June 7', 'Hapag-Lloyd', 'weeks', 'Shanghai', 'Ningbo', 'Shekou', 'Yantian', 'Hong Kong', 'Singapore', 'Buenos Aires', 'Rio Grande', 'Port Kelang', 'Singapore', 'Hong Kong', 'Hapag-Lloyd', 'Dakar Express', 'COVID-19', 'first', 'week 24 southbound / week 27', 'Antwerp', 'Dunkirk', 'Nouakchott', 'July 29', 'Hapag-Lloyd', 'Mediterranean Service', 'Asia', 'week 31', 'The Antwerpen Express', 'Busan', 'Hapag-Lloyd', 'Conosur', 'CON', 'Puerto Madryn', 'May 22', 'Bahia Blanca', 'May 28', 'Rio Grande', 'June 3', 'June 5', 'Rio de Janeiro', 'June 7', 'June 9', 'San Antonio', 'June 19', 'Callao', 'June 26', 'Guayaquil', 'June 29', 'Arica', 'July 4', 'Antofagasta', 'July 6', 'San Vicente', 'July 13', 'Santos', 'June 9', 'Puerto Madryn', 'July 17', 'Northern Majestic', 'New York', 'U.S.', 'Port of Philadelphia', 'Hapag-Llyod', 'Philadelphia', 'PNCT Terminal', 'Norfolk', 'Charleston', 'Jacksonville', 'Port Everglades', 'MV NORTHERN MAGNUM', '039', 'June 26', 'the Port of Genoa,', 'Italy', 'between July 1 and July 5', 'German', '1000', 'Brenntag', 'Hamburg', 'Harburg', 'Germany', 'Greenacre', 'Sydney', 'Tuesday', 'afternoon', 'Wentworth Street', 'Mainline', 'January 27', 'approximately 14:30', 'the Port of Hamburg', '20-liter', 'February 11', 'the Port of Freeport', '24-hours', 'Sydney Harbour', 'Saturday', 'morning', 'August 11', 'Genoa', 'August 14 to 16', 'COVID-19', 'Monte Galletto', 'A7', 'August 16', 'Grandiosa', 'first', 'February 19', 'Port Said West', 'Port Said East', 'Damietta', 'Brisbane', 'Queensland', 'February 6', 'Ipswich-Rosewood', 'Durack', 'Holland Park', 'Pullenvale', 'Woolloongabba', 'Sydney', 'New South Wales', 'Gold Coast', 'Queensland', 'the week', 'Australian', 'Sydney', 'the east coast', 'New South Wales', 'NSW', 'Feb 10', 'the Bureau of Meteorology', 'between 200 and 400', 'Sydney', 'the Blue Mountains', 'the weekend', 'the week', '33', 'Feb 10', 'NSW', 'February 24', 'Port of Dalian', 'the evening', 'February 24', 'the morning', 'February 25', 'July 9', 'over 4 meters', 'Fremantle Port', 'Australia', 'July 13', 'February 24', 'Port of Qingdao', 'the evening', 'February 24', 'February 25', 'January 7', 'Kobe Port', 'the morning of January 8', 'the morning of the next day', 'January 7', 'Nagoya Port', 'the morning of January 8', 'the morning of the next day', 'the Port of Fremantle', 'late June 22', 'June 23', 'January 7', 'Port of Ningbo', 'the afternoon', 'January 7', 'the afternoon', 'January 8', 'February 29', 'the DP World Southampton Terminal', 'UK', 'February 28', 'February 29', '23:15', 'February 28', '03:45', 'February 29', '09:00', 'February 29', 'between 13:00 to 17:00', 'March 2', 'the Port of Nagoya', 'early morning', 'the afternoon of March 3', 'the morning of March 5', 'the morning of March 6', 'February 12', 'Hong Kong', '60 percent', '80 percent', 'February 14', 'Saturday, March 7', 'Media', '17', 'Four', '533', 'Hong Kong', 'Hong Kong', 'Hubei Province', 'Wednesday, March 4 and Thursday, March 5', 'four', 'Hong Kong', '14-day', '14-day', 'Hong Kong', 'South Korea', 'Iran', 'three', 'Italy', 'COVID-19', 'Daegu', 'South Korea', 'Korea', 'Korea', 'the past 14 days', 'Hong Kong', 'Lombardy', 'Veneto', 'Italy', 'Saturday, February 8', 'Hong Kong', 'China', '14 days', 'Hong Kong', 'China', 'China', '14 days', 'Hong Kong', 'third', 'Hong Kong', '14 days', 'Hong Kong', 'China', 'Hong Kong', 'at least April 20', 'The Centers for Disease Control and Prevention', 'CDC', 'Level 1', 'Hong Kong', 'the Worldwide Travel Advisory', 'five-day', 'Hong Kong', 'Monday, February 3', 'China', 'Novel', '2019', 'Hong Kong', 'Approximately 2,700', 'the first day', 'around 7,000', 'the second day', 'hundreds', 'the Hospital Authority', 'Monday, February 3', 'midnight', 'Tuesday', 'Hong Kong', '2019', 'COVID-19', 'January', 'four', '6:00 PM', 'one week', 'COVID-19', 'the past 14 days', 'COVID-19', 'Hong Kong Disneyland', 'June 18', 'Wednesday, July 15', 'Hong Kong', 'COVID-19', 'some 250', 'the past week', 'several weeks', 'zero', 'daily', 'Hong Kong', '1,570', 'COVID-19', 'eight', '48', 'Tuesday', 'Hong Kong’s', 'Hong Kong’s', 'COVID-19', 'Hong Kong', 'the National Security Law', 'June 30', 'one', 'Hong Kong', 'Wednesday', 'six', 'Hong Kong', 'Sunday', 'Alex Chow Tsz-lok', 'November 2019', 'the Caritas Medical Centre', 'January 27', 'the Shenzhen Bay', 'January 28', 'MTR', 'February 2', 'Hong Kong', 'last year', 'Thursday, March 12', 'the Mong Kok District', 'Kowloon', 'COVID-19', 'Hong Kong', 'Beijing', 'the start of the year', 'June 9', 'Hong Kong', 'Marine Department', 'The Chinese Foreign ministry', 'Thursday', '20 August', 'Hong Kong', 'the United States', \"the U.S. State Department's\", '19 August', 'Washington', 'three', 'the Special Administrative Region (SAR', 'the Agreement on the Surrender of Fugitive Offenders', 'SFO', 'TSP', 'the International Operation of Ships', 'May 18', 'Hong Kong', 'Anglo', 'Anglo Eastern Univan Group', 'July 23', 'Houston', 'Tropical Storm Hanna', 'Gulf', 'Saturday', 'Brownsville', 'Texas', 'the Houston Ship Channel', 'between 08:00 and 12:00', 'January 24', 'Galveston Bay Entrance Channel', '9', '10', 'Galveston North', 'South Jetty', '5A', 'the Houston Ship Channel', 'Houston Port', 'the morning', 'February 6', 'July 31', 'Hurricane Isaias', 'the Freeport Port', 'Bahamas', 'July 31', 'August 1', 'Hurricane Isaias', 'Bahamas', 'Florida', 'the Saffir-Simpson', 'at least 75 miles per hour', 'Friday', 'night', 'Isaias', 'the east coast', 'Florida', 'Saturday night', 'the East Coast', 'Landfall', 'Monday', 'the South Carolina-North Carolina', 'Northeast', 'Florida', 'late Sunday', 'Carolinas', 'The National Hurricane Center', 'NHC', 'Atlantic', 'Florida', 'Florida', 'North Carolina', 'Virginia', 'Ocracoke Island', 'North Carolina', 'Evacuations', 'Florida', 'Florida', 'the East Coast', 'Florida', 'Carolinas', 'five inches', 'the United States', 'Florida', 'South Carolina', 'North Carolina', 'Virginia', 'Port Condition Whiskey', 'Isaias', 'U.S.', 'East Coast', 'August 24', 'the National Hurricane Center', 'NHC', 'Texas', 'Houston', 'Louisiana', 'Tropical Storm Laura', 'later this week', 'Port Bolivar', 'Morgan City', 'Louisiana', 'NHC', 'Texas', 'Mississippi', 'Intelligence', 'Everstream Analytics', 'Hutchison International Terminal', 'the Port of Hong Kong', '18:00', 'August 18', 'Typhoon Higos', 'London', 'Six Nations on the Grand River', '401', \"the Wet'suwet'en Nation\", 'the Coastal GasLink Pipeline', 'June 18', 'the International Longshore and Warehouse Union', 'the Port of Oakland', 'June 19', 'The U.S. Customs Oakland Office', 'ILWU', 'the Port of Oakland', 'Immigration', 'U.S. Flag', 'U.S.', 'June 19', 'the Port of Oakland', 'Baharchara', 'Banshkhali', 'Chattogram', 'Beira', 'the National Institute of Social Action of Mozambique', 'Idai', 'one week', 'COVID-19', 'Cartagena', 'Bolívar', 'Duque', 'Canal del Dique', 'the first half of 2021', 'Chattogram', '52', 'Edo State', \"the Resident Doctors' Association\", 'three-day', 'Lima', 'Callao', '3 September', 'Los Angeles', 'Chicago', 'New York', 'Michigan', 'Florida', 'COVID-19', 'New York City', 'New York', 'COVID-19', 'Rotterdam', '2,020kg', 'EUR151mn', 'Ecuador', 'Hungary', 'San Juan', 'the National Police', 'six', 'Sydney', 'Columbine Avenue', 'Punchbowl', 'Taipei', 'annual', 'NGO', 'Taiwanese', 'Santa Marta', 'marijuana', 'USD1.3', 'Antwerp', 'Belgium', 'the Yellow Sea', 'Taiwan', \"the People's Liberation Army\", 'Qingdao', 'Shandong Province', 'Lianyungang', 'the Yellow Sea', 'Taiwan', \"the People's Liberation Army\", 'Qingdao', 'Shandong Province', 'Lianyungang', 'July 9', 'the Port of Ningbo', 'July 8', 'afternoon', 'the Port of Hamburg', 'February 9', '330 meters', 'Wednesday, February 12', 'March 5', 'DCT Pier 2', 'the Port of Durban', 'March 16', '06:00 to 07:30', '14:00 to 15:30', '22:00 to 23:30', 'February 3', 'Shandong', '30-50 percent', 'just over a week', 'China', 'Qingdao', 'Wednesday', 'India', '21-day', 'COVID-19', 'at least April 14', 'Narendra Modi', '21-day', '21 years', 'JSW Steel', 'Hindalco', 'Maruti Suzuki', 'Toyota', 'Honda', 'Hyundai', 'Tata Motors', 'Panasonic', 'Samsung', 'LG', 'Foxconn', 'The Ministry of Shipping', 'At least seven', 'Krishnapatnam', 'Tuna', 'Gopalpur', 'Karaikal', 'Gangavaram', '78', '22 percent', 'a week before', 'India', 'COVID-19', '649', '13', 'The Ministry of Health', 'March 26', 'India', 'one', 'The U.S. Centers for Disease Control and Prevention', 'CDC', 'March 24', 'India', 'India', 'India', 'Intelligence', 'Everstream Analytics', 'March 22', 'three weeks', 'Cochin,', 'Haldia', 'Visakhapatnam', 'Gangavaram', 'Paradip', 'Krishnapatnam', 'Kakinada', 'New Mangalore', 'Goa', 'Dharma', 'Gopalpur', 'January 17', 'the Port of Botany', 'Dubai Ports', 'Fremantle', 'more than 15 months', 'September 29', 'DP World’s Brisbane', '24 hours', '07.00', 'the next day', 'French', 'Lillebonne', 'approximately 29 km', 'Le Havre', '400 square metre', 'April 6', 'the Maritime Authority', 'the Port of San Antonio', 'Chile', 'COVID-19', 'Chilean', 'Jiangmen-Zhanjiang', 'Guangzhou', 'Zhuhai', 'Gongbei-Hengqin', 'August 19', 'Tropical Storm Higos', 'Guangzhou', 'Shenzhen', 'Nanning', 'Guangzhou', 'Guangzhou', 'Hong Kong', 'August 27', 'Interstate Commodities, Inc.', 'Chapter 11', 'New York Northern Bankruptcy Court', 'Interstate Commodities Inc.', 'last Monday', 'Iowa', 'almost 100 miles per hour', 'Cedar Rapids', 'second', 'Iowa', 'Cedar Rapids', 'An estimated 8,200', 'Iowa', 'At least four', 'three', 'Iowa', 'one', 'Indiana', 'Midwest', 'Iowa', 'two million', 'at least 600,000', 'Iowa', 'Donald Trump', 'Iowa', 'Kim Reynolds', '25', 'Benton', 'Boone, Cass, Cedar', 'Clarke', 'Clinton', 'Dallas', 'Greene', 'Grundy', 'Guthrie', 'Hardin', 'Iowa', 'Jackson', 'Jasper', 'Johnson', 'Jones', 'Linn', 'Madison', 'Marshall', 'Muscatine', 'Polk', 'Poweshiek', 'Scott, Story,', 'Tama', 'Washington', 'the National Guard', 'Linn County', 'Cedar Rapids', 'Cedar Rapids', 'Belle Plain', 'Tama', 'Midwest', 'last week', 'at least 65,000', 'Iowa', 'Linn County', 'several more days', 'thousands of miles', 'several thousand', 'Linn County', 'Iowa', 'an estimated several billion dollars', 'the U.S. Department of Agricultural', 'USDA', 'at least 37.7 million acres', 'Midwest', 'at least 14 million', 'Iowa', 'Iowa', 'an estimated 8.18 million acres', '5.64 million acres', '43 percent', '72 hours', 'Iowa', 'roughly $10 billion', 'Iowa', 'U.S.', 'the months of June, July', 'August', 'the United States', 'at least 57.5 miles', 'at least 250 miles', 'no more than three hours', 'between 50 to 70', 'Iowa', 'as little as 30', 'second', '2020', 'first', 'Ohio', 'Pennsylvania', 'New Jersey', 'West Virginia', 'the beginning of June', 'four', 'million', 'Iowa', 'Iran', 'Islamic Revolutionary Guards Corps', 'IRGC', 'US', 'the Strait of Hormuz', 'Bandar Abbas', 'July 29', 'US', 'Abu Dhabi', 'Qatar', 'One day', 'IRGC', 'Wednesday', 'the final day', 'IRGC’s Navy', 'Aerospace Division', 'July 28 and 29', 'Iran', 'US', 'Iranian', 'Iran', 'first', 'Iran', 'US', 'last year', 'January 2020', 'Qassem Soleimani', 'US', 'UN', 'Iran', 'October', 'July 23', 'US', 'Iranian', 'Beirut', 'US', 'Izmit', 'between the hours of 00:01', 'Izmit', '08:00', 'at least six', 'around 100', 'Jackson Bazaar', 'Kimari Station', 'Karachi Port', '19', 'six', '19', 'Japanese', 'Kinei Maru No.22', 'Korean', 'Pos Yokohama', 'Jun 18', 'Tahara', 'Honshu', 'Nagoya', 'Japan', 'Japanese', 'April 7', 'Japanese', 'Milano Bridge', 'Busan New Port', 'April 6', 'Milano Bridge', 'the Ocean Network Express', 'April 10', 'the Jawaharlal Nehru Customs House', '15-day', 'PTA', 'COVID-19', 'PTA', 'FTA', '15 days', 'the Office of the Commissioner of Customs', 'Jawaharlal Nehru Port', 'JNPT', 'The Container Corporation', 'CONCOR', 'Nanepada Village', 'JN Ports', 'Customs', 'COVID-19', 'August 25', 'Kansas City Southern', 'Houston', 'Beaumont', 'Texas', '19:00', 'August 25', 'Hurricane Laura', 'around 36 hours', 'August 25', 'Kansas City Southern', 'Houston', 'Beaumont', 'Texas', '19:00', 'August 25', 'Hurricane Laura', '36', 'Pakistani', 'the Port of Karachi', 'Keamari', 'earlier this week', 'The Pakistan State Oil (PSO', 'Karachi', 'February 19', 'the previous three days', 'Keamari', '14', 'some 500', 'February 16', 'Jackson Market', 'Shireen Jinnah Colony', 'Sikanderabad', 'dozens', 'February 18', 'Monday', 'Jordanian', 'King Abdullah II', 'King Abdullah', '2019', 'COVID-19', 'Monday', 'Jordan', '349', 'COVID-19', 'six', 'Jordanian', 'each day', 'recent days', '126', 'Amman', 'COVID-19', 'Sunday', 'at least 1,600', 'Monday, February 17', 'Howard College', 'Edgewood', 'the University of KwaZulu-Natal', 'UKZN', 'UKZN', 'Friday', 'February 14', 'four', 'the Steve Biko Campus of', 'the Durban University of Technology', 'one', 'Tuesday', 'February 11', 'Howard College Campus', 'the City Hall', 'Tuesday', 'University of KwaZulu-Natal', 'February 12', 'March 6', 'UKZN', 'February 10', 'Monday, February 3', 'UKZN Edgewood', 'Pinetown', 'Pietermaritzburg', 'Howard College Campus', 'One', 'Howard', '15 percent', 'Japanese', 'Mitejima', 'Nishiyodogawa Ward', 'Osaka', 'Wednesday', 'Yodogawa-dori', 'Mitejima-suji', 'Tuesday', 'September 3', 'MT New Diamond', 'IMO 9191424', 'the Indian Ocean', 'about 70 miles', 'Sangamankanda Point', 'Indian Oil Corp', 'Mina Al Ahmadi Port', 'Kuwait', 'the Paradip Port', 'India', '270,000 metric tons', 'at least 1', 'the Sri Lanka Navy', 'Sri Lanka Air Force', 'Sri Lanka Ports Authority', 'the Indian Navy', 'the Indian Coast Guard', 'Abidabad', 'Baldia Town', 'Karachi', 'French', 'Avenue Christophe-Colomb', 'the Port of Le Havre', 'Wednesday', 'Three', 'at least 478', 'GRDF', '10', 'the afternoon', 'Louis-Krages-Strasse', 'Bremen', 'Everstream Analytics', 'three-day weekend', '24 to 27 January', 'St Kilda', 'Melbourne', 'Port Phillip', 'the summer', 'Monday', '27 January', 'Australia Day', 'a public holiday', 'Belgian', 'Monday', 'evening', 'Ranst', 'Antwerp', 'Ranstsesteenweg', 'Liersesteenweg', 'Canadian', 'Saint-Laurent', 'Montreal', 'Sunday night', '9 February', '2150 Rue Ward', 'Thursday', 'the United States Navy', 'Iran', 'Islamic Revolution Guard Corps', 'IRGC', 'the Persian Gulf', 'April 15', 'the US Navy', '11', 'IRGC', 'six', 'Navy', 'Coast Guard', 'At least one', 'Iranian', 'about 10 yards', 'Coast Guard', 'American', 'US', 'IRGC', 'roughly one hour', 'Wednesday', 'one day', 'IRGC', 'Hong Kong', 'the Strait of Hormuz', 'April 2 and March 27', 'IRGC', 'US', 'two', 'Washington', 'Tehran', 'Iranian', 'US', '2016-2017', 'IRGC', 'at least one', 'Iran', 'the Gulf of Oman', 'last summer', 'Tehran', 'US', 'Iranian', 'US', 'Gulf', 'Wednesday', 'Intelligence', 'Everstream Analytics', 'Le Havre', 'January 24', 'March 21', 'Maze', 'Henning Harders', 'March 15', 'Sydney', 'Melbourne', 'Brisbane', 'Perth', 'Auckland', 'Wellington', 'Henning Harders', 'the night of September 22', '19:30', 'Si Racha', 'Chongburi Province', 'Approximately 3000', 'early morning', 'September 23', 'London', 'February 17', 'Storm Ciara', 'Thameslink, Southern', 'Great Northern', 'London', 'Bedford', 'London Victoria', 'Horsham', \"King's Cross\", 'Farringdon Station', 'East Grinstread Station', \"King's Cross Station\", 'Unite', 'London', 'Unite', 'long-hours', 'TfL', 'Claire Mann', 'Granada Beach', 'Long Beach', '15,870 gallons', 'the Los Angeles River', 'Long Beach', 'COVID-19', 'Long Beach', 'approximately 11,000 gallons', 'February 20', 'the Port of Long Beach', 'about 3.7 days', 'December 17', 'Lotte Chemical', '150,000 tonnes', 'December 10', 'March 4, 2020', '580,000 tonnes', 'styrene monomer', 'SM', '55 percent', \"Lotte Chemical's\", 'Deasan', 'March 4, 2020', 'Daesan', 'Lotte Chemical Corporation', 'May 12', 'Manila', 'South', 'Manila North', '86%', 'Manila', '92%', 'Subic', '34%', 'Batangas', '97%', 'June 4', 'Waigaoqiao', 'several hours', 'early June 4', 'Shanghai', 'June 6', 'June 4', 'Ningbo', 'several hours', 'early June 3 and 4', 'June 6', 'May 18', 'the Shanghai Guandong Container Terminal', '08:00 until 10:00', 'May 17', 'North Channel', 'Shanghai', '11:10', 'May 17', 'May 18', 'February 3', 'the Port of Dalian', 'February 3 morning', 'March 27', 'the Port of Shanghai', 'early morning', 'March 26', 'the afternoon of March 27', 'midnight', 'March 27', 'the morning of March 28', 'July 31', 'the Port of Dalian', 'China', 'August 2', 'that day', 'July 15', 'Port of Ningbo', 'July 16', 'July 17', 'July 19', 'May 29', 'Port of Dalian', 'China', 'May 31', 'evening', 'June 1', 'May 8', 'Port of Qingdao', 'May 8', 'late night', 'May 3', 'July 8', 'the Port of Busan', 'July 10 morning', 'July 11', 'afternoon', 'July 8', 'the Port of Shanghai', 'July 8', 'June 4', 'Busan', 'between June 3 and June 4', 'June 22', 'the Port of Ningbo', 'the morning', 'June 23', 'June 23', 'the Port of Shanghai', 'the morning of June 24', 'March 25', 'early morning', 'March 26', 'the afternoon of March 27', 'June 18', 'Port of Ningbo', 'June 20', 'January 26', 'LPG', 'Houston', 'around 13:30 UTC.', 'three', 'at least two', 'LPG tanker PANG TIAN', 'Ulsan', 'Typhoon Maysak’s', 'September 3', 'September 9', 'Bahamian', 'Lyrics Star', 'September 9', 'COVID-19', 'September 7', 'Nhava Sheva', 'August 24-26', 'Port of Nhava Sheva', 'Port of Mundra', 'August 29', 'August 19', 'Macau', '10', 'Three', 'Macau', 'Taipa', 'Maersk', 'Arabian Express', 'ABX', 'June 19 and July 3', 'June 24 and July 8', 'Colombo', 'Jebel Ali', 'June 19 and July 3', 'Jebel Ali', 'Doha', 'Jebel Ali', 'June 24 and July 8)', 'Doha', 'Maersk', 'Arabian Express', 'ABX', 'June 5', 'June 10', 'Colombo', 'Jebel Ali', 'June 5', 'Jebel Ali', 'Doha', 'Jebel Ali', 'June 10', 'Doha', 'Maersk', 'June 22', 'Balboa', 'Lazaro Cardenas', 'Balboa', 'June 22', 'San Vicente', 'San Antonio', 'July 7', 'Kaohsiung', 'Hong Kong', 'Shanghai', 'Maersk', 'Pakistan Express', '2', 'July 23', 'Shanghai', 'August 15', 'Karachi', 'Ports', 'Shanghai', 'July 23', 'Ningbo', 'Shekou', 'Singapore', 'Port Klang', 'Jawaharlal', 'Jawaharlal', 'Karachi', 'August 15', 'Singapore', 'Shanghai', 'Ningbo', 'Shekou', 'Nansha', 'Maersk', 'Pakistan Express', '2', 'June 25 and July 9', 'Shanghai', 'July 18', 'Karachi', 'July 20', 'the Jawaharlal Nehru Port', 'Shanghai', 'June 25, July 9', 'Ningbo', 'Shekou', 'Singapore', 'Port Klang', 'Jawaharlal', 'Jawaharlal Nehru', 'July 20', 'Karachi', 'July 18', 'Singapore', 'Shanghai', 'Ningbo', 'Shekou', 'Nansha', 'May 8', 'Arabian Express', 'ABX', 'weeks 20', 'May 15 Colombo', 'May 20', 'Jebel Ali', '22', 'May 29', '23', 'June 3', 'Jebel Ali', 'COVID-19', 'Jebel Ali', 'Doha', 'Chennai Express', 'CHX', 'weeks', '22', '23', 'COVID-19', 'Laem Chabang', 'June 6 and 13', 'Tanjung Pelepas', 'Krishnapatnam', 'Visakhapatnam', 'CHX (Chennai Express', 'Laem Chabang', 'July 4 and 18', 'Ennore', 'July 13', '27', 'COVID-19', 'Laem Chabang', 'July 4', 'July 18', 'Tanjung Pelepas', 'Krishnapatnam', 'Ennore Chennai', 'July 13', 'July 27', 'Krishnapatnam', 'Visakhapatnam', 'Singapore', 'Tanjung Pelepas', 'Laem Chabang', 'July 8', 'Maersk', 'F12 week', '30', 'COVID-19', 'Singapore', 'Hong Kong', 'Shanghai', 'Xiamen', 'Shekou', 'Nansha New Port', 'Jawaharlal', 'COVID-19', 'Maersk', 'week 30 westbound and week 34', 'July 24', 'Xingang', 'Gwangyang', 'Ningbo', 'Singapore', 'Jawaharlal', 'Jawaharlal Nehru', 'August 23', 'Singapore', 'Dalian', 'Xingang', 'Gwangyang', 'March 18', 'COVID-19', 'Maersk', 'week 23 westbound and week 27', 'June 5', 'Xingang', 'Gwangyang', 'Ningbo', 'Singapore', 'Jawaharlal', 'Jawaharlal', 'Nehru', 'July 5', 'Singapore', 'Dalian', 'Xingang', 'Gwangyang', 'March 29', 'COVID-19', 'Maersk', 'week 25 westbound and week 29', 'June 19', 'Xingang', 'Gwangyang', 'Ningbo', 'Singapore', 'Jawaharlal', 'Jawaharlal', 'Nehru', 'July 19', 'Singapore', 'Dalian', 'Xingang', 'Gwangyang', 'COVID-19', 'Maersk', 'PKX', 'Qingdao', 'July 28', 'Shanghai', 'Ningbo', 'Shekou', 'Mundra >', 'Port Qasim', 'COVID-19', 'Maersk', 'PKX', 'Qingdao', 'June 16', 'Shanghai', 'Ningbo', 'Shekou', 'Mundra >', 'Port Qasim', 'COVID-19', 'Maersk', 'PKX', 'Qingdao', 'June 16', 'Shanghai', 'Ningbo', 'Shekou', 'Mundra >', 'Port Qasim', '205O', 'July 8', 'Maersk', 'week 29', 'COVID-19', 'Shanghai', 'Ningbo', 'Shekou', 'Singapore', 'Port Klang', 'Mundra\\nEastbound: Mundra', 'Port Klang', 'Singapore', 'Shekou', 'Ningbo', 'Shanghai', 'May 18', 'Maersk', 'weeks 23', '24', '25', '25', '26', '27', 'COVID-19', 'Antwerp', 'May 31, June 7, June 14', 'Liverpool', 'Newark', 'North Charleston', 'June 15, June 22, June 29', 'North Charleston', 'Antwerp', 'Liverpool', 'Maersk', 'TA6 week-20', 'week-24', 'COVID-19', 'Gioia Tauro', 'May 13', 'Naples', 'La Spezia', 'May 26', 'June 9', 'Houston', 'New Orleans', 'Miami', 'Freeport', 'June 22', 'CHX (Chennai Express', 'week 25 westbound and week 28', 'COVID-19', 'Laem Chabang', 'June 27', 'Tanjung Pelepas', 'Krishnapatnam', 'Ennore Chennai', 'July 6', 'Krishnapatnam', 'Visakhapatnam', 'Singapore', 'Tanjung Pelepas', 'Laem Chabang', 'Maersk', 'the third quarter', 'COVID-19', 'the second half of the year', 'Maersk', 'AC2 week', '26', 'Balboa', 'Lazaro Cardenas', 'Shanghai', 'Hong Kong', 'Kaohsiung', 'Maersk', 'week-22', 'COVID-19', 'first', 'Lazaro Cardenas', 'May 23', 'Lazaro Cardenas', 'Balboa', 'Buenaventura', 'Manzanillo', 'Busan', 'Qingdao', 'Shanghai', 'Kaohsiung', 'Shekou', 'Hong Kong', 'Ningbo', 'Gwangyang', 'Yokohama', 'July 22', 'over 60 miles', 'Cornwall', 'Bremerhaven', 'Veracruz', '22.602 tons', '20', '15:00', 'July 17', '20 minutes', 'January 30', 'Gibraltar Strait', 'Algeciras', 'Newark USA', 'the afternoon of January 29', 'Algeciras', 'Campameno', 'January 30', 'Algeciras', 'January 30', 'January 10', 'Danish', 'Maersk', 'Bremerhaven', 'Hamburg', 'the end of January', 'up to 150,000', 'Bremerhaven', 'Hamburg', 'July 29', 'weeks 30', '32', 'Rotterdam', 'the Susan Maersk', 'The United States', '5.1', '11 kilometres', 'Digos City', '35.2 kilometres', '01:44', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'The United States', '5.1', '12 kilometers', 'Hachijo', 'Tokyo', '118 kilometers', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'The United States', '5.2', '30 kilometers', 'Sarangani', 'Monday', '6 January', '55.9 kilometers', 'approximately 15:25', 'The United States', '5.3', '17 km', 'Nasugbu', '86 km', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'The US Geological Survey', '6.2', '592.2 km', 'approximately 116 km', 'Surbaya', 'July 22', 'APM Terminals Maasvlakte II B.V at Port of Rotterdam', 'Netherlands', '20:00', 'July 23', 'July 24', 'January 29', 'the Port of Balboa', 'February 10', 'Stafford', 'Crewe', 'West Coast', 'London Northwestern Railway', 'up to 90 minutes', 'the day', 'March 27', 'Malaysian', 'the Port of Klang, Port of Penang', 'COVID-19', 'The Ministry of Transport', 'this week', 'January 6', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', 'Singapore', 'Ocean Gull - owned', 'Singapore', 'Ocean Tankers', 'twenty', 'Penang', 'January 5', 'MMEA', 'Malaysian', 'the Marine Department', 'third', 'June 25', 'Maltese', 'the Port of Antwerp', 'Belgium', 'at least July 4', 'COVID-19', 'Leopold', '15', '26', 'MarineTraffice', 'Antwerp', 'June 19 after a', 'month-long', 'Ras Laffan', 'Qatar', 'Friday', 'Barcelona', 'Catalan', 'Moroccan', 'Islamic State', 'some four years', 'COVID-19', 'Calle Josep Anselm Clavé', '1', 'La Rambla', 'Europe', 'Spain', 'Spain', 'Catalonia', 'August 2017', 'Barcelona', 'Cambrils', 'Monday', 'Melbourne', 'Australia', 'Toll Group', 'COVID-19', 'Toll', 'New Zealand', 'around 36 hours', 'Monday', 'the week', 'Japan Post', 'some 50', 'approximately 44,000', 'February', 'five weeks', 'Nefilim', 'Toll', 'Australian Cyber Security Centre', 'February', 'the end of the week', 'ACSC', 'the Australian Signals Directorate', 'April 1', 'the Port of Barcelona', 'January 8', 'January 9', 'Perth', 'Geraldton', 'Pilbara', 'Ningaloo', 'Gascoyne', 'Lancelin', 'Bunbury', 'January 8', 'January 10', 'Batesmans Coast and Eden', 'Sydney', 'Byron', 'Macquarie', 'Hunter Coast', 'Illawarra', 'the Bureau of Meteorology', 'Sydney', 'May 21', '22', 'Wind Warnings', 'Thursday', 'Gale Warning', 'Illawarra Coast', 'Batemans Coast\\nStrong', 'Macquarie Coast', 'Hunter Coast', 'Eden Coast', 'Sydney Coast\\n\\nWind Warnings', 'Friday 20', 'Sydney Coast', 'Illawarra Coast', 'Macquarie Coast', 'Batemans Coast', 'Eden Coast', 'Sydney', 'Coffs Coast', 'September 24', 'the Australian Bureau of Meteorology', 'Sydney', 'September 24 and 25', 'September 24', 'Batemans Coast', 'Eden Coast', 'September 25', 'Coffs Coast', 'Macquarie Coast', 'Sydney Coast', 'September 25', 'Sydney', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'September 8', 'the Bureau of Meteorology', 'the Port of Sydney', 'September 8-9', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'September 8', 'September 9', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'August 31', 'the Bureau of Meteorology', 'the Port of Fremantle', 'August 31 and September 1', 'August 31', 'Perth Local Waters', 'Lancelin Coast', 'Perth Coast', 'Leeuwin Coast', 'September 1', 'Perth Coast', 'Leeuwin Coast', 'Perth Local Waters', 'Geraldton Coast', 'Lancelin Coast', 'Eucla Coast', 'Dubai', 'COVID-19', 'April 21', 'April 15', 'IMO 9447330', 'Antwerp', 'COVID-19', 'Antwerp', 'August 28', 'Maze', 'Montreal', 'QC', 'FUEL Transport', 'August 28', '1%', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', 'Dutch', 'ANET', '22', 'SSW', 'Pulau Kendi', 'Penang', 'the morning of January 8', 'Colombo', 'Singapore', 'ETA', 'January 14', 'January 10', 'Penang Anchorage', 'Eldorado Brasil', 'Bracell', 'Asian', 'RGE', 'two', 'the Port of Santos', 'São Paulo', '25-year', 'USD72mn', 'Mercosul Line', 'French', 'CMA CGM', '30 September 2020', 'four', 'Santos', 'Salvador', 'Suape', 'around 3,000', 'February 3', 'Hong Kong', 'China', '09.00', '17.00', 'Prince of Wales Hospital', 'Mary Hospital', 'Tuen Mun Hospital', 'Pamela Youde', 'Nethersole Eastern Hospital', 'Elizabeth Hospital', 'United Christian Hospital', 'Margaret Hospital', 'February 3', '•', 'Queen Mary Hospital', '08.30', '•\\tOffice', '13.00', 'Central', 'an hour', '15.00', '19.00', 'Exit A', 'Tsuen Wan MTR', 'February 7', 'China', '21.00', 'February 3', 'the Medical Association of Malta', 'MAM', 'half', 'COVID-19', 'Malta', 'more than ten', 'the Middle East', 'North Africa', '2019', 'COVID-19', 'Tuesday', 'Lebanese', 'Iran', 'Iraq', 'Saudi Arabia', 'COVID-19', 'Egypt', 'Egyptair', 'China', 'at least March 14', 'Kazakhstan', 'Iran', 'March 1', 'South Korea', 'COVID-19', 'Jordan', 'Chinese', 'the Port of Aqaba', 'Kuwait', 'the Bahrain Tourism and Exhibitions Authority', 'BTEA', 'Iran', 'Iraq', 'China', 'Iran', 'Italy', 'Japan', 'Singapore', 'South Korea', 'Thailand', '210', 'COVID-19', 'Iran', 'more than half', 'at least six', 'the Islamic Republic', 'COVID-19', 'September 2', 'Barbados', 'Meraklis', 'Dardanelles', 'Port Said', 'August 31', 'Karanlik', 'September 2', 'Dozens', 'Sawaed Holding', 'Abu Dhabi', 'May 19', 'three months', 'Emirati', 'Emirati', 'COVID-19', 'Gulf', 'the Middle East', 'North Africa', 'Lebanon', 'RAMCO', 'al Farwaniyah', 'Kuwait', 'May 12', 'COVID-19', 'the United Arab Emirates', 'Friday', 'India', 'COVID-19', 'May 3', 'Friday', 'first', 'Hyderabad', 'Friday', '1,200', 'Hatia', 'Jharkhand', 'Kerala', 'Odisha', 'Friday', 'Chennai', 'Andaman', 'Nicobar Islands', 'COVID-19', '14 days', 'Hyderabad', 'Friday', 'morning', 'earlier this week', 'Transportation', 'COVID-19', 'India', 'Port of Manila', 'the Port of Manila', 'The Manila North', '60%', 'Manila South', '26%', 'Subic', '36%', 'Batangas', '71%', 'the Port of Manila', 'every week', '2', 'MNL South', '3', 'today', 'MNL', '3', 'today', 'August 13', 'every week', 'HOEGH LONDON', 'Korean', 'around 05:00', 'July 15', 'Gadeokdo', 'Busan', 'Masan Port', 'Busan', '0.5-meter', 'Busan', 'August 20', 'up to 12 hours', 'Guangdong Sheng', 'China', 'Tropical Storm Higos', 'the Port of Tanjung Pelepas', '6-hours', '2-hours', 'Main Street', 'Terminal Avenue', 'Vancouver', '750', 'N Harbor Boulevard', 'San Pedro', 'Los Angeles', 'Tuesday', 'August 19', 'the Port of Rotterdam', 'about 2 hours', 'early in the morning hours', 'January 20', 'Japanese', 'Mitsubishi Electric', '120', '40', 'over 8,000', 'Japan', 'June 28, 2019', 'China', 'Japan', 'APT', 'Advanced Persistent Threat', 'APT', 'Tick', 'Bronze Butler', 'APT', 'China', 'Chinese', 'NCPH', 'China', 'APT', 'IP', 'zero-day', 'Northeast Asia', 'South Korean', 'Japanese', 'Russia', 'China', 'Singapore', 'Mitsubishi Electric', 'third', 'the Japanese Defense Ministry', '2018', 'Japan', 'Japan', '2019', 'Fast Retailing', 'Japanese', 'UNIQLO', 'GU Japan', 'more than 460,000', 'April 23, 2019', 'May 10, 2019', 'third', 'May 10, 2019', 'Japanese', '2020', 'Summer Olympic', 'Tokyo', 'The National Institute of Information and Communications Technology', 'about 200 million', '2019', 'Mitsubishi Electric', 'Japanese', 'Japan', 'National Centre of Incident Readiness and Strategy for Cyber', '212.1 billion', '2018', 'four-fold', '54.5 billion', '2015', 'Toshiba', '2.5 million', 'daily', 'Mitsubishi Heavy Industries', '2011', '11', 'Kobe', 'Nagasaki', 'Ethernet Module', 'Staying', 'Japan', 'Japanese', 'Northeast Asia', 'APT', 'Japan', 'China', 'Mitsubishi Electric', 'June 15', 'the Port of Shanghai', 'Sunday', 'Malaysian', '1,864 tons', 'the Port of Tanjung Pelepas', 'Johor', 'Singapore', 'EAFD', '110', 'Romania', 'Indonesia', 'June 3', 'Malaysian', 'Romania', 'International Criminal Police Organization', 'Malaysia', 'at least 28', '2020', 'EAFD', 'last month', 'Gujarat', 'the Port of Kandla', 'Jawaharlal', 'Mumbai Port', 'Distant Cautionary Signal No. 1 (DC-I', 'the Arabian Sea', 'September 22', 'Motiva Enterprises', 'this week', 'Port Arthur', 'Texas', 'Tropical Storm Beta', 'Motiva Enterprises', 'LLC', 'Saudi Refining Inc.', 'Houston', 'Texas', 'United States', 'MSC', 'the United States', 'the east coast', 'South America', 'GULF TO SAEC-1/UCLA', 'week 21', 'week 24', 'Buenos Aires', 'Rio de Janeiro', 'New York', 'Baltimore', 'Charleston', 'Caucedo', 'MSC', 'the United States', 'the east coast', 'South America', 'GULF TO SAEC-1/UCLA', 'week 27', 'week 30', 'Buenos Aires', 'Rio de Janeiro', 'New York', 'Baltimore', 'Charleston', 'Caucedo', 'the Mediterranean Shipping Company', 'NEUATL4', 'weeks 21', '25', 'COVID-19', 'Antwerp', 'first', 'May 18', 'June 15', 'New York', 'Charleston', 'September 2', 'English', 'Antwerp', 'Piraeus', '30251 tons', '24', '07:00', 'September 1', 'ETA', 'Piraeus', 'September 7', 'September 14', 'the Port of Valencia', '09:30', 'September 13', '08:00', 'September 14', 'September 8', 'MSC', 'Canada', 'US West Coast', 'Asia', 'week 46', 'Week 46', 'ETA', 'November 2020', 'Yantian', 'Ningbo', 'Long Beach', 'June 9', 'U.S.', 'China', 'Canada', 'Singapore', 'Taiwan', 'Japan', 'Thailand', 'India', 'India', 'the World Trade Organization’s', 'WTO', 'Information Technology Agreement', 'overnight', 'Tuesday', 'Morphett Vale', 'Adelaide', 'At least seven', 'Diamond Street', 'one', 'about five hours', 'Bureau of Meteorology', 'one', 'two', 'the summer months', 'Australia', 'May to September', 'ten to 30 minutes', 'Gujarat', 'the Port of Kandla', 'Gujarat', 'Jawaharlal Nehru Port Trust', 'Mumbai Port', 'Distant Cautionary Signal No. 1 (DC-I', 'Occupy Gateway', 'Hutatma Chowk', 'Azad Maidan', 'at least 30', 'BJP', 'the Taj Mahal Palace Hotel', 'the Gateway of India', 'Jawaharlal Nehru University', 'JNU', 'at least 28', 'Sunday, January 5', 'August 23', 'Murphy Oil', 'U.S. Gulf of Mexico', 'Hurricane Marco', 'Murphy Oil Corporation', 'Houston', 'TX', 'January 15', 'Indonesia', 'Singapore', 'Malaysia', 'the Singapore Strait', '31', '2019', '7', '2018', 'Singapore', 'Indonesia', 'Malaysia', 'Thailand', 'this week', 'Singapore', 'Strait', 'Everstream Analytics', 'Amazon', 'Target', 'Trader Joes', 'Instacart', 'Friday', 'New York', 'Pennsylvania', 'Oregon', 'the United Food and Commercial Workers', 'Workers United', 'Target', 'Instacart', 'Everstream Analytics', 'Fridays', '25 September', 'Berlin', 'Dortmund', 'Erlangen', 'Hamburg', 'dozens', 'the United States', 'Juneteenth holiday', 'Friday, June 19', 'Juneteenth', '1865', 'the United States', 'Tulsa', 'Washington, DC:', 'Los Angeles', 'CA', 'New York', 'NY', 'Seattle', 'WA', 'Chicago', 'IL', 'the International Longshore and Warehouse Union', 'Friday', '29', 'the West Coast', 'Juneteenth', 'the last three weeks', 'Friday', 'Washington DC', 'Juneteenth', 'Tulsa', 'Trump', 'Saturday', 'Friday', 'Tulsa', 'Juneteenth', 'The Medical Association of Malta', 'MAM', 'Malta Union of Midwives and Nurses', 'MUMN', 'Monday', '3 August', 'one week', 'Mater Dei', 'General Practitioners', '5 August to 12 August', 'Gozo', 'General Hospital', 'one week', '3 August', 'Community Clinics', 'the Rabat Health Centre', 'the Communist Party of India', 'Marxist', 'the Communist Party of India', 'week', 'January 8', 'Citizenship Amendment Act', 'New Delhi', 'Mumbai', 'Pune', 'Bangalore, Chennai', 'Kochi', 'Hyderabad', 'Vijayawada', 'Uttar Pradesh', 'June 30', 'French', 'July 1', 'the Federation Nationales des Ports et Docks CGT', '2 hour', '10:00-12:00', '4 hour', 'Le Havre', '09:00-13:00', 'January 22', '300 meters', 'Port of Antwerp', '21:30', 'January 21', 'Porto de Santos', 'Sao Paulo', '540', 'June 2', 'five', 'Hong Kong', 'May 31 and June 1', 'Kerry Logistics', 'Kwai Chung', 'Marks & Spencer', 'Jollibee', 'Indonesia', 'Ministry of Health', 'Tanjung Priok', '1.', 'RDT', '2', 'RDT', 'PCR', '14 days', 'PCR', '3', 'PCR', '4', 'RDT', 'PCR', 'PCR', '5', 'PPE', 'Kattupalli Port', 'Chennai', 'April 1', 'Mooring/Unmooring Charges\\n•\\tPilotage Tariff', '•\\tPilotage Tariff', 'March 18', 'the Port of Salalah', 'the IMO Declaration of Health', 'Port', 'the Harbour Master', 'Port Health', 'the last 16 days', 'the Harbour Master', 'Immigration and Port Health', 'Harbour Master', 'Port Control', 'the Ministry of Health', 'the World Health Organization', 'Coronavirus', 'the Port Health', 'July 10', 'the National Hurricane Center', 'NHC', 'Northeast', 'Mid Atlantic', 'Fenwick Island', 'Watch Hill', 'RI', 'up to 60 mph', 'March 19', 'Ningbo Port', '17:10', 'March 18', '03:20', 'March 19', 'Xiazhimen Channel', '08:25', 'March 18', 'Furthermore, Xiazhimen Channel', 'Tiaozhou Men', '06:00', '09:00', 'March 19', 'May 18', 'the Port of Ningbo', '00:20', 'May 18', '22:30', 'May 16', 'May 17', 'the Port of Ningbo', 'February 24', 'Hong Kong', 'China', 'January 7', 'the Port of Manila', '0', 'Manila North', '0', 'Manila South', 'the Port of Manila', '0', 'Manila North', '0', 'Manila South', 'the Port of Manila', 'this week', 'the Port of Manila', '0', 'Manila', 'Manila South', 'the Port of Manila', '0', 'Manila North', '0', 'Manila South', 'the Port of Manila', '0', 'Southside', 'August 24', 'Noble Corporation Plc', 'two', 'the U.S. Gulf of Mexico', 'Noble Corporation plc', 'London', 'United Kingdom', 'February 12', 'the North Charleston Terminal', 'the Port of Charleston', 'United States', '12:00', 'February 12', 'Ausgrid', 'Sydney', 'The Northern Beaches', 'Hornsby Shire', 'August 20', 'Portuguese', 'Northern Monument', 'the Korea No.', '8', 'August 15', 'Busan', 'The Northern Monument', 'Shanghai', 'August 18', '18:15', 'Everstream Analytics', 'Beckton', 'London', 'Eastbury Road', 'Sunday', 'around 200', 'the Fai Ming Estate', 'Wah Ming Road', 'New Territories', 'Hong Kong', 'the evening', 'Tai Fai House', 'the Fai Ming Estate', 'the Fai Ming Estate', 'Wuhan', '2019', 'Saturday', 'Sunday', 'Mong Kok', 'Kowloon', 'Mong Kok', '2016', 'the Lunar New Year', 'Monday', 'around 2:45 AM', 'Caritas Medical Centre', 'Cheung', 'Kowloon', 'a few hours', 'Telegram', 'Hong Kong', 'China', '2019', 'nCoV', 'the Fai Ming Estate', 'Mong Kok', 'the weekend', 'Hong Kong', 'Mong Kok', 'Hong Kong', 'the weekend', 'Sunday', 'The Fai Ming', 'the Caritas Medical Centre', 'Hong Kong', 'Chinese', 'Chinese', 'Beijing', 'Friday, January 31', 'Salisbury Garden', 'Tsim', 'Caritas Medical Centre', 'April 16', 'Ocean Bunkering Services', 'Singapore', 'Hin Leong', 'April 17', 'three', 'April 17', 'two', 'Ocean Bunkering Services', \"the Quai de l'Horloge\", 'Old Port', 'Montreal', 'this morning', '13 September', 'earlier in the evening', 'three', 'Everstream Analytics', 'South Shore', 'Chicago', 'five', '7700', 'South Kingston Avenue', 'around 8:00 AM', 'Thursday', 'New Diamond', 'around 38 miles', 'Sangaman Kanda', 'Sri Lanka’s Eastern Province', 'one', 'Sri Lankan', 'Indian', '22', 'two', 'Lankan', '1,080-foot', 'New Diamond', 'Panama', 'Liberia', 'Porto Emporios Shipping', 'approximately 270,000 tons', '1,700 tons', 'Kuwait', 'Paradeep', 'India', 'Sri Lankan Navy', 'New Diamond', 'Friday', 'morning', 'Lankan', 'one', 'Indian', 'six-foot', 'about 30 feet', 'Maldives', 'February 11', 'Karachi Port', 'February 19', 'July 15', 'July 5', 'the United Arab Emirates', 'Dominica', 'MT Gulf', 'around 4:30 AM', 'July 5', 'Iranian', 'July 14', 'Hormuz Island', 'two', 'Tehran', 'twenty-six', 'India', 'Khor Fakkan', 'the United Arab Emirates', 'months', 'US', 'Iranian', 'US', 'National Iranian Oil Company', 'National Iranian Tanker Company', 'the Islamic Revolutionary Guards Corps', 'UAE', 'US', 'Iran', 'Gulf', 'Tehran', 'the Strait of Hormuz', 'last summer', 'Iran', 'Hong Kong', 'the Strait of Hormuz', 'April 14', 'Iran', 'IRGC', 'Washington', 'Tehran', 'the MT Gulf', 'US', 'the Persian Gulf', 'the Strait of Hormuz', 'the Bab al Mandeb Strait', 'Tehran', 'US', 'February 19', 'Petrobras', 'the Port of Santos', 'São Paulo', 'Brazil', 'The Port of Santos', 'Latin America', 'half', '1,000 to 1,200 tons', 'only receiving half', '12 hours', 'USD 150,000', '655,965', 'EUR', '139,018', 'March 9', 'one', 'GODSPEED', '20:45', 'March 9', 'the Port of Taipei', 'Taichung', 'Taiwan', 'Taipei', '21:00', 'January 5', 'German', 'Bremen-Burg', 'Germany', 'the night of January 4', 'March 8', 'German', 'one', 'Kurt-Eckerlmann-Strasse', 'the Port of Hamburg', 'Germany', 'around 19:30', 'March 7', 'three', 'the Multipurpose Terminal', 'Durban', 'recent weeks', 'the Black Lives Matter', 'European', 'the coming weekend', 'London', 'Paris', 'Paris', 'three', 'Saturday', 'French', 'London', 'London', 'nearly 230', 'recent weeks', 'German', 'US', 'European', 'COVID-19', 'the United States', 'France', 'Germany', 'the coming days', 'OOCL', 'the Pacific China Central 1', 'June 6', 'Ningbo', 'COVID-19', 'Ningbo', 'June 6', 'Shanghai', 'Pusan >', 'Long Beach', 'Pusan >', 'Ningbo', 'OOCL', 'the Pacific China Central 1', 'June 6', 'Ningbo', 'Ningbo', 'June 6', 'Shanghai', 'Pusan >', 'Long Beach', 'Pusan >', 'Ningbo', 'OOCL', 'Vietnam', 'China', 'VCS', 'May 29', 'Shanghai', 'Laem Chabang', 'Shanghai', 'May 29', 'Ningbo', 'Long Beach', 'Oakland', 'Lianyungang', 'Shanghai', 'OOCL', 'East Coast', '2', 'Qingdao', 'October 6', 'Qingdao', 'Ningbo', 'Shanghai', 'New York', 'OOCL', 'Gulf Coast', 'Hong Kong', 'October 9', 'Hong Kong', 'Shekou', 'Ningbo', 'Shanghai', 'Pusan – Houston – Mobile', 'New Orleans', 'Miami', 'Singapore', 'Hong Kong', 'OOCL', 'Gulf Coast', 'Hong Kong', 'May 29', 'Hong Kong', 'May 29', 'Shekou', 'Ningbo', 'Shanghai', 'Pusan >', 'New Orleans', 'Tampa', 'Miami', 'Singapore', 'Hong Kong', 'OOCL', 'Gulf Coast', 'Shanghai', 'October 4', 'Shanghai', 'Ningbo', 'Yantian', 'Shanghai', 'OOCL', 'Pacific China Central Service', 'Ningbo', 'October 10', 'Ningbo', 'Shanghai', 'Pusan – Long Beach', 'Ningbo', 'OOCL', 'Pacific China', 'PCN1', 'the week', 'October 3', 'Tianjin', 'Shanghai', 'Long Beach', 'Tianjin', 'OOCL', 'Pacific North West 1', 'Shekou', 'October 17', 'Shekou', 'Hong Kong', 'Yantian', 'Seattle', 'Shekou', 'OOCL', 'Pacific North West 2', 'Yantian', 'October 5', 'Yantian', 'Ningbo', 'Shanghai', 'Yantian', 'OOCL', 'Pacific North West 4', 'Hong Kong', 'October 6', 'Hong Kong', 'Yantian', 'Ningbo', 'Shanghai', 'Vancouver', 'Shanghai', 'Hong Kong', 'OOCL', 'Pacific North West 4', 'June 2', 'Hong Kong', 'June 2', 'Yantian', 'Ningbo', 'Shanghai', 'Vancouver', 'Shanghai', 'Hong Kong', 'OOCL', 'Vietnam China Service', 'VCS', 'Shanghai', 'October 9', 'Shanghai', 'Ningbo', 'Long Beach', 'Oakland', 'Shanghai', 'September 9', 'the Port of Manila', 'Typhoon Haishen', 'MNL', 'one', 'MNL', 'January 8', 'India', 'Tuticorin Port', 'Cochin Port', 'Pradip Port', 'Wednesday, January 8', 'Chennai Port', 'the coming hours', 'February 18', '10:30 to 12:30', 'GCE', 'two', 'June 5', 'Port of Ningbo', 'June 5', 'June 6', 'afternoon', 'the coming hours', 'August 19', 'the Port of San Antonio', 'Chile', 'August 18 to 21', 'FM Penas Gulf to Coquimbo', 'the Patrick Terminals', 'Sydney', 'Australia', 'eight hours', 'between 14:00 to 22:00', 'September 5', 'January 8', 'India', 'Tuticorin Port', 'V.O. Chidambraranar Port', 'Cochin Port', 'Pradip Port', 'Wednesday, January 8', 'Chennai Port', 'the coming hours', 'March 12', 'DP World Southampton', '20:30 to 00:01', 'August 13', 'the Port of Kaohsiung', 'August 11 06:45', 'August 10 14:00', 'Tropical Storm Mekkhala', '19:00', 'February 16', 'DP World Southampton', '20.30', 'February 17', 'Port of Durban', '20.20', 'the same day', 'Intelligence', 'Everstream Analytics', 'June 15', '15.00', 'the Port of Le Havre', 'the Terminal de France', 'September 8', 'the Port of Dalian', 'China', 'September 7 to 05:00', 'September 8', '14:30', 'September 7 to 05:00', 'September 8', 'January 14', 'Rotterdam', 'this afternoon', 'Parit Chiwarak', '14 October', '1973', 'Chiwarak', 'the Siam Commercial Bank', 'Maha Vajiralongkorn', 'Bangkok', 'September 9', 'Liberian', 'Pacific Star', 'September 19', 'ANVISA', 'the Port of Santos', '2', 'COVID-19', 'September 5', 'the Pakistan Ministry of Maritime Affairs', 'the Port Health Officer', 'Karachi', '99', 'April 7', 'Panama', '14,000', 'Milano Bridge', '85', 'two', '81', 'the Port of Busan', 'April 6', '7', 'the Seaspan Ganges', 'March 28', 'Papua province', 'Jakarta', '14 days', 'March 26', 'COVID-19', 'Papua', 'Lukas Enembe', 'August 17', '40', 'the Coca-Cola', 'Valencia', 'London', 'South Tottenham', 'London', 'Network Rail', 'Willesden Junction', 'Clapham Junction', 'September 14', 'German', 'the Port of Bremerhaven', 'Germany', 'the afternoon of September 13', 'February 6', 'Quai Lagrange', 'André Carette', 'Le Havre', 'February 6', 'Jules Durand', 'PR Lebourgeois', 'Le Havre', 'February 6', 'De Pasquier', 'Le Havre', 'the DeKalb Avenue Station', 'Brooklyn', 'New York City', 'Tuesday', 'morning', 'N', 'Canal Street', 'DeKalb Avenue', 'Thursday', 'Philippine Coast Guard', 'PCG', 'Ports', 'Manila', 'Batangas', 'the Singapore Navy', 'the Bay of Manila', 'Luzon', 'PCG', 'PCG', 'Philippine', 'the Singapore Navy', 'PCG', 'Ports', 'Manila', 'Batangas', 'Everstream Analytics', 'February 7', 'Philippines', 'Department of Health', 'China', 'Hong Kong', 'Macau', 'the past fourteen days', 'February 4', 'first', 'Maritime Declaration of Health', 'March 15', 'the Philippine Ports Authority', 'Manila', 'Metro Manila', 'March 15', 'Janaury', '21', 'Philippine', 'January 10', 'ASEAN', 'the HK-ASEAN', 'Philippines', 'Brunei', 'Malaysia', 'Thailand', '85 percent', 'Hong Kong', 'ten years', 'another 10 percent', '14 years', 'Cairo', 'Enppi - Engineering for Petroleum and Process Industries', 'Tesla', 'Malaysia', 'the United States', 'Iran', 'South Africa', 'Oman', 'Turkey', 'Enppi', 'the Burullus Gas Company', 'Tesla', 'Hong Kong', 'Glory Shipping Marine Co., Ltd', 'Indonesian', 'MT', 'Sinar Maluku', 'Philippines', 'first', 'around March 31st', 'second', 'April 12', 'WEIR OIL & GAS', 'MT_Sinar', 'Maluku', 'smtp://mail[.]besco[.]com[.]sa', 'September 15', 'Valencia', 'September 9', 'Valencia', '202', 'Pier 2, Port of Durban', '06.45', 'February 28', '204', '203', '07:00', 'the same day', 'Berth 108', 'Pier 1 Waterside and Landside', '07.00', '08.15', 'July 14', 'Durban Container Terminal', '94', 'the Port of Antwerp', 'March 29', 'March 30', 'January 7', 'Shanghai Waigaoqiao Container Terminal', '08:00', 'the coming hours', 'August 13', 'the Port of Fuzhou', 'August 10 22:00', '11 17:00', 'August 11', '20:00', 'Tropical Storm Mekkhala', 'February 11', 'the Port of Tianjin', '13 hours', 'Maersk Line', 'up to USD 1000', 'Tianjin', 'September 29', 'the Tianjin Port', 'September 29', 'the afternoon of September 29', 'January 31', 'Port of Ningbo', 'the afternoon', 'late evening', 'January 30', 'February 11', 'Port of Tianjin', '05:30', 'February 11', 'September 10', 'Xiazhimen', 'the Port of Ningbo', '06:45', '13:00', 'September 9', '10:40', '13:00', 'September 9', 'July 15', '102A', '103', 'Fred Hartman La Port', 'the Port of Houston', 'Monday', 'five', 'Chinese', 'Nigeria', 'Chinese', 'Singapore', 'last Thursday, July 2', 'Nigerian', 'Five', 'Chinese', 'Dryad Global', 'Kota Budi', 'Benin', 'second', 'Nigeria', 'last Thursday', 'the Gulf of Guinea', '3,500 miles', 'Senegal', 'Angola', 'nearly 65', 'this year', 'the International Maritime Bureau', 'Dryad Global', 'the Gulf of Guinea', 'this year', '26 percent', 'the Gulf of Guinea', 'Nigeria', 'the Port of Busan', 'March 8', '06.00', '19.00', 'VCB', 'PM Mitsotakis', 'the New York Times', 'Greek', 'Turkish', 'Ambarli', 'İstanbul', 'At least one', 'the Port of Antwerp', 'EUR', 'Fourteen', 'Netherlands', 'AD', 'GBP', 'Felixstowe', 'Suffolk', 'September 20', 'Antwerp', 'Belgium', 'Tuesday', 'The Hague', 'Netherlands', 'three', 'two', 'Asppor', 'Callao', 'Port Authority of Singapore', 'January 24', 'PSA Terminals', 'Jurong Port', 'the Port Health Organisation', 'JNPT Sheva Navi Mumbai', '1', 'Vessels', 'China', 'Thailand', 'Hong Kong', 'Singapore', 'Japan', 'South Korea', 'Vietnam', 'Indonesia', 'Malaysia', 'Iran', 'Nepal', 'Italy', '12', 'PHO', '2', 'PHO', 'Mohfw', 'March 3', 'the Port of Lomé', 'at least 72', '•\\tCrew', 'Last 10', 'April 16', 'the Port Authority of Thailand', 'PAT', 'COVID-19', 'PAT', 'the Port of Bangkok', 'Laem Chabang', 'five percent', 'May 1 to June 30', '15 days to', '45 days', 'April 15 to June 30', 'Cartagena Dimar', 'second', 'Hotel Las Américas', 'September 9', 'Xpress Guernsey 0007E', 'Nhava Sheva', 'Port of Karachi', 'Pakistan', 'Nhava Sheva', 'September 15', 'May 25', 'the Port of Tanjung Pelepas', '15 hours', '16 hours', 'last week', 'the Port of Singapore', 'recent days', 'the previous weeks', 'August 18', 'the Port of Colombo', 'late July', 'the first week of August', 'August 17', '12 hours', 'April 3', 'Saudi Arabian', 'Dammam', 'COVID-19', 'April 3', 'Saudi Arabian', 'Jeddah', 'India', 'April 6', 'more than 50,000', '23', 'CFS', 'Chennai', 'Kattupalli', 'April 14', 'February 13', 'Port of Ningbo', 'USD 1,250', 'Ningbo', 'February 13', 'Ningbo', 'February 13', 'Port of Shanghai', 'USD 1,250', 'Shanghai', 'February 13', 'Shanghai', 'Port Klang', '14 days', 'China', 'Macau', 'Taiwan & Hong Kong', 'Italy', 'South Korea', 'Japan', 'Iran', 'Quarantine', 'Port Health Authority', 'the Immigration Office', 'Sungai Buloh', 'Quarantine', 'Port Klang', 'Malaysia', 'Chinese', 'Zhejiang', 'Jiangsu', 'Hubei', 'Wuhan', 'Zhejiang', 'Jiangsu', 'Hubei', 'Wuhan', 'Malaysia', 'Wuhan', 'Hubei', '14 days', 'Malaysia', 'Chinese', 'Zhejiang', 'Jiangsu', 'Hubei', 'Wuhan', 'the Port Health Officer', '•\\tSign', 'Chinese', 'Zhejiang', 'Jiangsu', 'Hubei', 'Wuhan', 'the Port of Antwerp', 'the next few days', 'May 15', 'Antwerp', 'May 14', 'early May 15', 'early May 14', 'today', 'Europa', 'Zandvliet', 'Berendrecht', 'the Port of Barcelona', 'Gloria', 'Australia', 'Australia', 'March 15th', '14 day', 'March 4', 'the Port of Busan', 'China', 'September 29', 'Port of Busan', 'October 1', '08.00', '08.00', 'October 2', 'Cape Town', 'Port Control', 'three', 'Health Status', 'the Master', 'China', 'Singapore', 'South Korea', 'Taiwan', 'Thailand', 'United States', 'South African', 'Port Health', '•\\tPort Health', '•\\tMedical', 'Port Health', 'Port Control', 'Port Health', 'Port Health', '•\\tStrict', 'Port Health on Corona Virus', 'Corona', 'Port Health', 'Importers', 'April 24', 'Spanish', 'the Port of Cartagena', 'Spain', 'Spanish', 'COVID-19', 'next week', 'February 18', 'the Port of Charleston', 'May 10', 'the Chattogram Port Authority', 'May 16', 'the Port of Chennai', 'July 1', 'March 24', 'the Port of Chittagong', 'March 11', 'March 24', 'SAGT', 'the Port of Colombo', 'April 24', 'Dalian', '06:00', 'the day', 'May 15', 'the Port of Dalian', '19:00', 'May 14', 'February 14', 'Port of Dalian', 'the afternoon', 'February 12', 'the morning', 'February 14', 'the evening', 'February 14', 'February 15', 'March 13', 'the Port of Dalian', 'March 15', 'evening', 'January 29', 'China', 'March 25', 'the Port of East London', \"South Africa's\", 'March 26 to April 16', 'COVID-19', 'Freeport, Grand Bahama', 'Buckeye', 'Bahama Rock', 'up to 40', 'the weekend', 'Monday', 'May 25', 'February 14', 'the Port of Fuzhou', 'May 5', 'Port of Fuzhou', 'May 4', 'evening', 'May 5', 'September 29', 'Port of Gwangyang', 'October 1', '08.00', '08.00', 'October 2', 'June 15', 'the Port of Hong Kong', 'June 14', 'Tropical Storm Nuri', 'China', 'Yangjiang City', 'the early morning hours', 'afternoon', 'June 14', 'August 17', 'Hong Kong', 'nearly half', 'Kwai Tsing Container Terminals', 'The Centre for Health Protection', 'Hong Kong', '74', 'Sunday', '34', 'the Kwai Tsing Container Terminal', '33', 'more than 100', 'Wang Kee', 'More than 10', 'Hong Kong', 'nine', '20', 'January 17', 'the Port of Houston', 'the Houston Ship Channel', 'January 13', 'the Port of Houston', 'only as early as August 23', 'Tropical Depression', 'the weekend', 'early next week', 'February 11', 'the Port of Houston', 'March 19', 'the Port of Houston', 'two', 'Barbours Cut', 'Friday, March 20', '7:00 pm', 'March 19', 'The Port of Houston', \"the International Longshoremen's Association\", 'ILA', 'September 29', 'Port of Incheon', 'October 1', '08.00', '08.00', 'October 2', 'February 11', 'the Port of Jiangyin', 'Fuzhou', 'Fujian province', 'February 9', 'Gujarat', 'the Port of Kandla', 'Gujarat', 'Jawaharlal Nehru Port Trust', 'Mumbai Port', 'Distant Cautionary Signal No. 1 (DC-I', 'the Arabian Sea', 'June 17', 'King Abdullah Port', 'Saudi Arabia', 'COVID-19', 'January 8', 'the Port of Kobe', 'January 8', 'March 27', 'the Port of Kwangyang', '02:00', 'March 27', 'March 11', 'Long Beach', 'Los Angeles', 'USD 90 million', 'EUR', '80.9 million', 'annually', 'zero', 'March 11', 'Long Beach', 'Los Angeles', 'USD 90 million', 'EUR', '80.9 million', 'annually', 'zero', 'the Port of Manila', 'February 4', 'Port of Montreal', '99.4 percent', 'About 1,200', 'the Canadian Union of Public Employees', 'February 4', 'third', 'the Port of Montreal', '10-day', 'Labour', 'Filomena Tassi', 'two', 'COVID-19', '1,125', 'February 11', 'the Port of Houston', 'June 26', 'the Port of Ningbo', 'the early morning hours', 'June 29', 'February 17', 'Port of Ningbo', '6 hours', 'February 17', 'February 15 - 17', 'between 0.5 -1.5 days', 'the coming 3 days', 'Intelligence', 'Everstream Analytics', 'August 4', 'the Port of Ningbo', 'China', '18:30', 'August 3', 'Typhoon Hagupit', 'Zhejiang', '04:30', 'August 4', 'Vessel', 'August 5 early morning', 'May 25', 'the Port of Ningbo', 'early May 26', 'January 8', 'the Port of Ningbo', '23:30', 'January 7', 'January 8', 'the Port of Osaka', 'January 8', 'March 13', 'the Port of Osaka', 'March 16', 'evening', 'March 3', 'Port of Qingdao', '07:30 to 12:30', 'March 2', 'the coming hours', 'April 24', 'Qingdao', 'April 24', 'April 25', 'April 9', 'COVID-19', 'the Port of Rotterdam', 'a Maritime Declaration of Health', 'the Harbour Coordination Center', 'COVID-19', 'Vessel', 'COVID-19', 'Rotterdam', '3-days', 'March 23', 'COVID-19', 'the days', 'weeks', 'Intelligence', 'Everstream Analytics', 'August 25', 'the Port of Rotterdam', 'Storm Francis', '19:00', 'August 25', 'August 26', '15:00', 'August 26', 'July 10', 'European Bulk Services', 'EBS', 'the Port of Rotterdam', 'EBS', 'two', 'Rotterdam', 'Approximately 150', 'EBS', 'FNV', 'June 9', 'the Port of San Antonio', '11 hours', 'late June 7', 'early June 8', 'September 10', 'the Port of San Antonio', 'Chile', '253 meters', 'September 9', 'August 13', 'Port of San Antonio', 'August 10 morning', 'August 11', '4 hours', 'August 31', 'the Port of San Antonio', 'Chile', '253 metres', '11:30', 'August 30', 'August 24', 'the Port of Santos', 'up to 2 meters', '12,5 meters', '1 meter', 'May 29', 'the Port of Santos', 'May 27', 'evening', 'May 28', 'afternoon', 'the coming hours', 'February 14', 'the Port of Savannah', 'the morning', 'February 12', 'the end of the week', 'February 18', 'the Port of Savannah', 'March 5', 'the Port of Savannah', 'March 4', 'Port Condition Yankee', 'the Port of Savannah', 'Hurricane Isaias', 'Yankee', 'greater than 500 tons', 'February 14', 'Shanghai Port', '23:30', 'February 13', 'July 3', 'the Port of Shanghai', 'China', 'the night of July 5', 'Intelligence', 'Everstream Analytics', 'August 6', 'the Port of Shanghai', 'China', 'August 5', 'afternoon', 'Typhoon Hagupit', 'Zhejiang', '04:30', 'August 4', '10:30', 'August 4', 'June 15', 'the Port of Shekou', 'June 14', 'Tropical Storm Nuri', 'China', 'Yangjiang City', 'the early morning hours', 'afternoon', 'June 14', 'Port of Keelung', '12.00', 'January 24', '08.00', 'January 26', 'the Lunar New Year', 'the Port of Taipei', '16.00', 'January 24', '08.00', 'January 25', 'the Lunar New Year', 'February 19', 'the Port of Tianjin', 'February 19', 'January 27', 'PAC International Container Terminal', 'Tianjin Port', '06:40', '19:30', 'January 26', 'Tianjin Port', 'Valencia', 'Gloria', 'Monday, January 20', '8:00 AM', 'Wednesday, January 22', 'May 4', 'Port of Xiamen', 'May 4', 'morning', 'March 13', 'March 13', 'the Port of Yantian', 'June 15', 'the Port of Yantian', 'June 14', 'Tropical Storm Nuri', 'China', 'Yangjiang City', 'the early morning hours', 'afternoon', 'June 14', 'July 1', 'the Port of Yokohama', 'Japan', 'July 1', 'the end of the day', 'February 7', 'the Port of Southampton', 'February 9 through February 11', 'Intelligence', 'Everstream Analytics', 'South Korea', 'the Port of Busan', '12-24 hours', 'China', '2-3 days', 'the Port of Bremerhaven', 'February 9', 'Storm Ciara', 'Operations', 'February 10', 'Port Klang', 'June 8', 'Port of Houston', 'Texas', 'Tropical Storm Cristobal', 'June 6', 'August 5', 'the Port of Zhoushan', 'Hagupit', 'August 5', 'August 8', '25,000 tons', 'July 22', 'DCT Pier 1', 'the Port of Durban', 'South Africa', 'at least 15:00', 'July 22', 'March 30', 'Port Said', 'between 19:00 and 06:00', 'daily', 'June 9', 'the Single Union of Maritime and', 'Port Workers', 'Puerto del Callao', 'SUTRAMPORPC', 'Peru', 'APM Terminals Callao', 'APMTC', '4-day', 'More than 20', 'COVID-19', 'three', 'April 10', 'Malaysian', 'April 13', 'COVID-19', 'the Port of Klang,', 'Johor', 'Penang', 'Kuantan', 'Melaka', 'Bintulu', 'Padang Besar', 'Thailand', 'April 3', 'Algeria', 'Barcelona', 'April 3', 'Tunisia', 'Barcelona', 'January 30', 'Hubei', 'the Yangtze River', 'Qinghai', 'Shanghai', 'August 26', 'Houston', 'Hurricane Laura', 'Houston', 'August 25', 'Hurricane Laura', 'the National Weather Service', 'NWS', 'the coming hours', 'mid-Atlantic', 'Delaware', 'Maryland', 'New Jersey', 'Pennsylvania', 'Virginia', 'Washington (DC', 'Tuesday', 'China', 'Ministry of Commerce', 'Australian', 'Chinese', 'the Chinese Alcoholic Drinks Association', 'Chinese', 'July', 'Australian', 'China', 'Australian', 'China', 'Australian', 'about 39 percent', 'China', 'Australia', 'US', '$795 million', '2019', 'China', 'Australian', 'France', 'China', 'two', 'China', 'Australia', 'recent months', 'two', 'May', 'China', 'Australian', 'Australia', 'COVID-19', 'Hong Kong', 'China', 'Australian', 'Chinese-Australian', 'at least 43', 'Port Metro Vancouver', 'Powell St', 'Clark', 'January 17', 'Le Havre', 'about 9:30', 'September 7', 'Typhoon Haiphen', 'Ulsan', 'early September 7', 'Hyundai Mobis', 'Ulsan', 'South Korea', 'September 7', 'Typhoon Haiphen', 'Ulsan', 'early September 7', 'Hyundai Motor', 'Ulsan', 'April 21', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '01:20', '05:20', 'April 21', 'about 2.2 million', 'Tropical Storm Isaias', 'mid-Atlantic', 'Northeast', 'August 3-4', 'August 5', 'evening', 'more than 687,000', 'New Jersey', '634,000', 'New York', 'more than 678,000', 'Connecticut', 'North Carolina', 'Maine', 'Ocean Isle Beach', 'North Carolina', 'August 3', 'Everstream Analytics', 'Caracas', 'Wednesday', 'evening', 'El Paraíso', 'Quinta Crespo', 'La Vega', 'San Antonio de Los Altos', 'La Quebradita 2', 'Monte Piedad', '23', 'Colinas de La Tahona', 'Abinader', 'Manzanillo Port', 'Gotabaya Rajapaksa', 'Colombo', 'Tsai', 'Taipei', 'Central', 'the Taiwan Strait', 'Sun Flora', 'Thai', 'Sattahip', 'around 05:00', 'April 3', '8', 'Bangkok', 'the afternoon', 'Ghetty Bottiglieri', 'May 23', 'the Arabian Sea', 'Amsterdam', 'the Netherlands', 'Singapore', 'June 1', 'April 15', 'WAN DA', 'IMO 8904927', 'approximately 3 nautical miles', 'Tanjung Penyusop', 'Johor', 'Indonesia', 'Indonesian', 'the Riau Islands', 'Ningda 10', 'the East China Sea', '11 nautical miles', 'Southeast of Zhoushan', 'China', 'the afternoon', 'April 11', 'the Port of Ningbo', 'Korean', 'September 8', 'the Maegok Industrial Complex', 'Ulsan', 'Typhoon Haishen', 'September 7', 'Hyundai Motor’s', 'Ulsan', 'Hyundai Mobis', 'January 31', 'thousands', 'the Toyota South Africa Motors', 'Prospecton', 'Durban', 'South Africa', 'January 30', 'January 30', 'January 22', 'the Busan National Container Terminal', 'New Jersey Turnpike', 'Woodbridge Township', 'Wednesday night', '15 January', 'Port Reading Avenue', 'Woodbridge Avenue', 'Everstream Analytics', 'the Legislative Assembly', 'British Columbia', 'Victoria', 'The Indigenous Youth for Wet’suwet’en', 'Indigenous Relations and Reconciliation', 'Scott Fraser', 'Coastal GasLink', 'MLA', 'the Legislative Assembly', '501', 'Belleville Street', 'weekly', 'the Port of Le Havre', '4-hours', 'February 20', 'the Clark Drive', 'Heatley Avenue', 'the Port of Vancouver', 'February 6', 'afternoon', 'the Swartz Bay', 'two', 'Coastal GasLink', 'French', 'the Terminal de l’Europe', 'Le Havre', 'France', 'the morning of January 10', 'Swartz Bay Ferry Terminal', 'Wednesday night', 'Thursday', 'morning', 'Colombia', '44-year-old', 'Javier Ordoñez', 'the previous night', 'Bogotá', 'Alexander Amaya', 'Tuesday', 'evening', 'Colombian National Police (PNC', 'Bogotá', 'Villa Luz', 'Amaya', 'Ordoñez', 'two', 'Ordoñez', 'Wednesday', 'Bogotá', 'Medellín', 'Barranquilla', 'Cali', 'Bogotá', 'Bosa', 'Engativá', 'Suba', 'Kennedy', 'as many as eight', 'Two', 'Soacha', 'Bogotá', '248', '58', '114', 'at least 30', '25', 'eight', 'TransMilenio city', '33', 'Bogotá', '15', 'Madrid', 'six', 'Ibagué', 'three', 'Mosquera', 'Medellín', 'Cali', 'Carlos Holmes Trujillo', 'Thursday', 'morning', 'Bogotá', 'Claudia López', 'PNC', '141', 'this year', 'Bogotá', 'Thursday', 'night', 'Bogotá', 'Colombia', 'the coming days', 'weeks', 'Wednesday', 'Victoria Park', 'Causeway Bay', 'Chater Garden', 'Central', 'over one million', 'around 60,000', 'just a few hours', 'HSBC', 'Wan Chai', 'Starbucks', 'Tin Hau', 'around 5:30 PM', 'thousands', 'Wan Chai', 'Central', 'Causeway Bay', 'Around 400', 'SOGO', 'Causeway Bay', 'New Year s Day', 'October', 'early November', 'first', 'early October', 'the National Day', 'November', 'late November', 'December', 'Yau Ma Tei', 'Mong Kok', 'Hong Kong Island', 'December', 'October', 'early November', 'hundreds', 'Tunisia', 'recent days', '2019', 'COVID-19', 'March 30-31', 'Mnilha', 'Ettadhamen', 'two', 'Tunis', 'night', 'March 17 and March 22', 'COVID-19', 'another two weeks', 'Tuesday', 'April 4', 'at least April 19', 'Tunisian', 'Kais Saied', '1,420', 'COVID-19', 'Wednesday', 'Tunisia', '394', 'ten', 'Egypt', '710', 'COVID-19', '46', 'Wednesday', '14-day', 'at least April 12', 'Egypt', 'between the hours of 7:00 PM', '6:00 PM', 'at least April 8', 'Wednesday', 'Port Said', 'COVID-19', 'Algeria', 'Abdelmadjid Tebboune', 'Wednesday', 'COVID-19', '716', '44', 'Algerians', 'between the hours of 7:00 PM', '7:00 AM', 'Algiers', 'nine', 'week', 'Blida', 'Tuesday', 'COVID-19', 'North Africa', 'Spain', 'Italy', 'this week', 'Tunisia', 'Mnilha', 'Ettadhamen', 'recent days', 'Italian', 'February 17', 'Genoa', 'today', 'February 17', 'Saudi Arabian', 'Bahri Yanbu', 'Yemen', 'today', 'recent days', 'Egyptian', 'Alexandria', 'Mansheya', 'Port Said', 'September 15', 'Qalyubia', 'Giza', 'last month', 'September 12', 'over 20', 'Egypt', 'the Law on Reconciliation and Building Violations', '2019', 'September 30', 'Egypt', '2013', 'July 23', 'Qingdao', 'Shandong', '100 mm', 'July 22', 'July 22', 'March 2', 'Qingdao Port', 'March 2', 'March 3', 'Qingdao Port', 'May 18', 'the Port of Qingdao', '06:00', '21:30', 'May 17', 'the Port of Qingdao', 'June 29', 'Qingdao Port', '04:30', '11:30', 'June 28', 'February 6', 'Qinzhou', 'February 9', 'Thursday', 'U.S.', 'FedEx', 'UPS', 'COVID-19', 'China', 'Chinese', 'Shanghai', 'China', '600,000', 'Henan Province', 'three', 'Jia', 'China', 'Chinese', 'Chinese', 'up to ten percent', 'the second quarter of the year', 'China', 'Queensland', '14 days', 'Brisbane', 'Morocco', 'July 8', 'March 15', 'COVID-19', 'Moroccans', 'Morocco', 'July 14', 'Moroccan', 'COVID-19', 'less than 48 hours', 'Morocco', 'Sete', 'France', 'Genoa', 'Italy', 'July 9', 'Moroccan', 'one more month', '6:00 PM', 'August 10', 'fourth', 'March 20', 'Morocco', '15,328', 'COVID-19', '243', 'Morocco', 'daily', 'COVID-19', 'June 17', 'kingdom', 'June 19', '24', 'July 4', 'COVID-19', 'recent weeks', 'Saad Eddine', 'El Othmani', 'July 5', 'Safi', 'the coming weeks', 'Nederlandse Spoorwegen', 'NS', 'Monday', 'morning', 'Storm Ciara', 'Landgraaf', 'Kerkrade', 'Cuijk', 'Boxmeer', 'Nijmegen', 'Venlo', 'Rotterdam Central', 'Dordrecht', 'Breukelen', 'Utrecht Central', 'Amsterdam Central', 'Rotterdam Central', 'Dordrecht', 'Monday', 'afternoon', 'Crewe', 'Liverpool Lime Street', 'West Coast', 'London Northwestern Railway', '14:00', 'London Euston', 'Wednesday morning', 'West Coast', 'London Northwestern Railway', 'London Overground', 'Southern', 'West Brompton', 'Shepherds Bush', 'Wembley Central', 'Harrow', 'Tube', 'the Circle Line', 'the London Underground', 'at least 08:00', 'National Rail', 'London', 'Liverpool Street', 'Thursday', 'morning', 'Greater Anglia', 'up to 40 minutes', 'TfL Rail', 'Shenfield', 'up to 20 minutes', 'London', 'Chelmsford', '11:30', 'London Charing Cross', 'London', 'National Rail', 'Micheldever', 'Winchester', 'at least Saturday', '29 August', 'London Waterloo', 'Havant', 'London Waterloo', 'Portsmouth Harbour', 'Guildford', 'up to 45 minutes', 'February 28', 'the Genoa Port Terminal and SECH', '00:01', 'March 15 to 04:00', 'March 26', 'Milan', 'Lombardy', 'Dinazzano', 'Rubiera', 'Livorno', 'La Spezia', 'Padua', 'Genoa-Padua', 'the Port of Genoa', 'Surrey Quays', 'Clapham Junction', 'London', 'London', '14:00', 'March 2', 'the Genoa Terminal', 'GPT', 'the Sech Container Terminal', 'the Port of Genoa', 'Italy', 'March 15 to March 26', 'August 12', '13', 'August 12 08:00 to August 13 08:00', 'Inner Mongolia', 'Shanxi', 'Hebei', 'Beijing', 'Tianjin', 'northwestern Shanxi', 'Liaoning', 'Henan', 'Gansu', 'Shaanxi', 'Sichuan', 'Yunnan', 'Guangdong', '100-200', 'Hebei', 'Beijing', 'Tianjin', 'Thursday', 'the Regional Cooperation Agreement on Combating Piracy and Armed Robbery against', 'Ships', 'Asia', 'Asian', 'the first six months of 2020', 'the same period last year', '51', 'between January and June', '28', '2019', '16', 'the Singapore Strait', '51', '49', 'two', 'the Singapore Strait', 'Bangladesh', 'India', 'Indonesia', 'Philippines', 'Vietnam', 'the South China Sea', '2019', 'COVID-19', 'COVID-19', 'Asian', 'the Horn of Africa', 'Asia', 'January 23', 'the Regional Cooperation Agreement on Combating Piracy and Armed Robbery against', 'Ships', 'Asia', 'January 18', 'Singapore Strait', 'Singapore Strait', 'two', 'five hours', '3', 'the start of 2020', 'first', 'January 8', 'TSS', 'the Singapore Strait', 'Singapore Strait', 'April 7', 'COVID-19', '15 percent', 'Balboa', 'Manzanillo', 'Panama', 'Reederei Heinz Corleis GmbH & Co.', 'September 21', 'Hamburg', 'District Court', 'the Port of Ningbo', 'the Port of Tianjin', 'Cat Lai', 'the Port of Ho Chi Minh City', 'Reefer', 'Cai Mep', 'Cat Lai', 'Ho Chi Minh City Area', 'TCIT', 'Tan Cang', 'TCTT', 'Tan Cang-Cai Mep Thi Vai Terminal', 'Phuoc Long \\nSP-ITC', 'the Port of Chittagong', 'the Port of Chittagong', 'July 8', 'the Port of Chittagong', 'Wednesday', 'the New York Times', 'nine', 'US', 'the American Embassy', 'Riyadh', 'Saudi Arabia', '2019', 'COVID-19', 'an estimated 50', 'COVID-19', 'One', 'Sudanese', '32', '17', 'last month', 'more than 20', 'June 27', 'the US Embassy', 'Riyadh', 'the Department of State', 'American', 'Washington', 'Saudi Arabia', 'COVID-19', 'United States', 'Lebanon', 'Iraq', 'Thursday', 'Saudi Arabia', '197,608', 'COVID-19', '1,752', 'Riyadh', 'COVID-19', 'daily', 'Saudi Arabia', 'Kingdom', 'some 4,000', 'every day', 'Gulf', 'COVID-19', 'Bahrain', '1', 'Qatar', '2', 'Oman', '4', 'Kuwait', '6', 'Saudi Arabia', '9', 'five', 'nine', 'July 1', 'Saudi', 'Riyadh', 'July', 'Saudi Arabia', 'the US Embassy', 'American', 'Kingdom', 'Chinese', 'Shanghai', 'early Thursday morning', 'approximately 1.5 nautical miles', 'the Yangtze River', 'At least three', '14', 'Hidalgo', 'Cameron Counties', 'Texas', 'Hurricane Hana', 'July 26 20:30', 'Harlingen', '•\\t10th', 'Harrison \\n•', 'Sunshine Strip', 'Sam Houston', '•\\tEye', 'Van Buren \\n', 'Jackson \\n•', '700', 'Austin \\n•', '200', 'N Eye Street', 'Jim Hogg', '11th', '3rd', 'Coolidge', '1st', '3rd', '•\\t10th', 'Taylor', '3rd', '3205', '7th', 'Washington', 'Lincoln', 'Garett Street', 'Stuart Place Road \\n•\\tFrontage and Lewis Street', '21st Street', 'Dixie Street \\n•\\tCommerce Street', 'Richmond Court', '•\\tStewart & 19th', '•\\tStewart & Merlin\\n•\\tStewart & 495', '2800', 'Abbott\\n•\\t', '100', 'W. Kika de la Garza\\n•\\t1200', '1800', '26 1/2', '•\\tHolland', '495', '2 Mile', '•\\t26th/27th/28th/ & Inspiration\\n•\\tWashington & Bus', '83', '83', '•\\tShary & Frontage', 'San Benito', '77', '•\\tSpears', 'Rockefeller Streets', 'Edinburg', 'Alton', '•\\tSouth Los Ebanos', 'North Los Ebanos', 'North Inspiration\\n•', 'Alton Blvd', '5 mile', '•\\tSouth Bryan', 'Olmito', 'Rosark Avenue', 'South Padre Island', 'Causeway', 'Palm Valley', 'City Hall', 'Fronton Street', '1200', 'Central Boulevard \\n•\\tWild Rose Street', 'Central Boulevard', 'North Iowa', '313', 'La Feria', 'Los Fresnos', '400', 'Alamo Street', 'Rio Hondo', 'North Reynold', '1600', 'Retama Street', 'August 23', 'the Port of New York/', 'New Jersey', 'COVID-19', 'Vessel', 'COVID-19', 'New York', 'New Jersey', 'U.S.', 'U.S.', 'January 8', 'Hamburg', 'January 7', 'noon', 'August 10', 'New South Wales', 'Tuesday', 'the Byron, Coffs', 'Macquarie', '5 metres', 'Illawarra', 'Sydney', 'Hunter', 'Monday', 'January 13', 'Rolls-Royce', 'Barnoldswick', 'United Kingdom', 'Singapore', 'some 350', 'November', 'Festivo', 'Ceuta', 'Spain', 'Algeciras', 'around 13:00', 'July 6', '16', '19', 'Russian', 'COVID-19', 'Busan', 'June 21', 'Vladivostok', 'Russia', 'around 160', 'Russian', 'SHAKHTERSK 2', 'South Korean', 'around 04:00', 'March 30', 'Japan Sea', 'Busan', 'Saint Petersburg', 'between January 9 and January 10', '72', '103', '6', '2', 'Pulkovo Airport', 'Krasnoguardi', 'Sestroretsk', 'Leninsky', 'October', 'Vasileostrovsk', 'Dzerzhinsky', 'Friday, January 10', 'Thursday, January 9', 'Vasileostrovsky', 'Krasnogvardeisky', 'Kuibyshevsky', 'Dzerzhinsky, Petrodvoretsky', 'Petrogradsky, Sestroretsky', 'Kolpinsky', 'Oktyabrsky', 'Leninsky', 'Pulkovo Airport', 'Tropical Storm Nuri', 'Philippines', 'Friday', '12 June', 'Hong Kong', 'Macao', 'China', '14 June', 'up to 85', 'July 8', 'Maltese', 'Seajoy', '63,500 tons', 'Iran', 'the Port of Santos', 'July 8', 'June 23', '2', 'COVID-19', 'Japanese', 'Thursday', 'the Gulf Livestock 1', 'the East China Sea', 'about 115 miles', 'Kagoshima Prefecture’s', 'Amami Oshima', 'early Wednesday morning', 'Typhoon Maysak', 'the Japan Coast Guard', 'Wednesday night', 'nearly 6,000', 'Napier', 'New Zealand', 'the Port of Jingtang', 'Tangshan', 'China', 'Filipino', '38', 'Filipinos', 'two', 'Australians', 'two', 'New Zealanders', 'Japanese', 'The Gulf Livestock 1', '450-foot', '2002', '11,947 tons', 'Panama', 'New Zealand', 'March 2', 'the Sech Container Terminal', 'the Port of Genoa', 'Italy', \"the Regent's Canal\", 'Carr Street', 'London', 'Monday', 'Sub-Saharan Africa', 'COVID-19', 'Ghana', 'three-week', 'Accra', 'Kumasi', 'Monday', 'Madagascar', 'Antananarivo', 'Fianarantsoa', 'Toamasina', 'Madagascar', 'Monday', 'Wednesday', '6:00 AM to 1:00 PM', 'daily', 'Burkina Faso', 'March 25', 'Zimbabwe', 'South Africa', 'Zimbabwe', 'May 3', 'South Africa', 'April 30', 'South Africa', 'last week', 'Africa', 'Africa', 'Ghana', 'one', 'over 60,000', 'South Africa', 'recent weeks', 'March 27', 'Gjertrud Maersk', 'COVID-19', 'Ningbo', 'first', 'COVID-19', 'Ningbo', 'March 17', 'Hong Kong', 'March 27', 'June 26', 'U.S.-flagged', 'MV Maersk Idaho', 'COVID-19', 'first', 'American', 'Maersk Line', 'Limited', 'Newark', 'New Jersey', 'June 19', 'COVID-19', 'nine', 'nine', 'September 16', 'the Port of Chittagong', 'September 9', 'the Port of Chittagong', 'August 13', 'the Port of Chittagong', 'Chittagong', 'January 17', 'the Port of Savannah', 'London', 'the London Overground Line', 'Thursday', 'morning', 'Shepherd', 'Bush', 'January 20', 'Sydney', 'Canberra', 'Australia', 'two', 'two', 'Canberra', 'over 1,200', 'New South Wales', 'Victoria', 'Queensland', 'Everstream Analytics', 'July 15', 'A26', 'Voltri', 'the Genoa Port', 'Italy', 'the European Storm Forecast Experiment', 'Estofex', 'June 8', '1', 'Spain', 'Murcia', 'Valencia', 'Andalusia', '06:00', 'June 8', 'June 9', 'the European Storm Forecast Experiment', 'Estofex', 'June 8', '1', 'Spain', 'Murcia', 'Valencia', 'Andalusia', '06:00', 'June 8', 'June 9', 'the European Storm Forecast Experiment', 'Estofex', 'June 8', '1', 'Spain', 'Murcia', 'Valencia', 'Andalusia', '06:00', 'June 8', 'June 9', 'the European Storm Forecast Experiment', 'ESTOFEX', 'Spain', 'Valencia', '06:00', 'June 18', '06:00', 'June 19', 'The Bureau of Meteorology', 'Melbourne', 'overnight', 'Wednesday', 'Thursday', 'morning', '60', '70 km', '90 to 100 km', 'overnight', 'South Australia', '23:59', 'Thursday 7 May', 'up to 100 kilometres', 'Adelaide', 'Australian', 'Victoria State', '23:59', 'Monday 1 June', 'up to 100 kilometres', 'Melbourne', 'Ballarat', 'Pomeranian Voivodeship', '08:00', 'Thursday 2 January', '75 kilometres per hour', 'Gdansk', 'Pomeranian Voivodeship', '18:00', 'Thursday 30 January', '75 kilometres per hour', 'Gdansk', 'Pomeranian Voivodeship', '21:00', 'Tuesday 11 February', '75 kilometres per hour', 'Gdansk', 'Italian', 'Liguria Region', '23:59', 'Monday 20 January', 'approximately 75 kilometres per hour', 'Genoa', 'Italian', '13:59', 'Friday 14 February', 'approximately 75 kilometres per hour', 'Genoa', 'South Australia', '06:00', 'Wednesday 2 September', 'up to 90 kilometres per hour', 'Adelaide', 'Port Lincoln', 'Hawker', 'Australian', 'Victoria State', '12:00', 'Tuesday 8 September', 'up to 100 kilometres', 'Melbourne', 'Hamilton', 'Dargo', 'Australia', 'Victoria State', '12:00', 'Monday 21 September', 'up to 100 kilometres', 'Mount Beauty', 'March 9', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '14:00', 'March 9', 'around 11:00', 'March 9', 'the U.S. Bureau of Industry and Security', 'BIS', 'Shanghai Cable Offshore Engineering Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'May 18', 'the Shanghai Waigaoqiao Terminal', 'May 16', 'May 17', 'the Shanghai Waigaoqiao Terminal', 'February 18', 'Shanghai Yangshan Port', 'February 17', '04:00', 'February 18', 'February 15 and 16', 'Shell Petroleum', 'Philippines', 'Royal Dutch Shell', 'Thursday', 'COVID-19', 'May 24', 'Pilipinas Shell', 'the Philippines Department of Energy', 'Philippines', 'Batangas', 'some 60 miles', 'Manila', '1962', '110,000 barrels', 'Philippines', 'Petron', '180,000', 'Limay', 'Bataan Province', 'Philippines', 'COVID-19', 'DOE', '60 to 70 percent', 'April', 'Metro Manila', 'Pilipinas Shell', 'US', '$137 million', 'the first half of this year', 'Luzon', 'North Mindanao Import Facility', 'Visayas', 'Mindanao', 'Tabangao', 'Pilipinas Shell', 'May 24', 'DOE', 'Philippines', 'Australia', 'Japan', 'New Zealand', 'August 18', 'China', 'the Yangtze River', 'days', 'the Chongqing Port', 'the China Maritime Safety Administration', 'three', 'Gorges Dam', 'Chongqing', 'Shanghai', 'Sichuan', 'Maersk', 'Israeli', 'Ashdod', 'Haifa', 'Emirati Jebel Ali', 'Abu Dhabi', 'Israel', 'UAE', 'the Vermont Harbor', 'Los Angeles', 'two', 'at least one', 'South Vermont Avenue', 'West Gage Avenue', 'Vermont', 'Gage', 'the Port of Guangzhou', 'several weeks', 'China', 'weeks', 'the Port of Hong Kong', 'several weeks', 'China', 'weeks', 'Shanghai', 'several weeks', 'China', 'weeks', 'July 10', 'the Marshall Islands', 'Amanda', '18:10', 'July 8', 'English', 'Antwerp', 'Dartmouth', 'ETA', 'July 16', 'July 8', '2', '17', 'Indonesian', 'Sinar Pomalaa', 'Kolkata', 'Singapore', 'July 22', 'Singapore', 'COVID-19', 'GAC', 'the Maritime Port Authority', 'COVID-19', 'Singapore', 'COVID-19', '14 days', 'March 3', 'the High Court', 'Singapore', 'Pacific International Lines', 'Heliconia Capital Management', 'April 27', 'Port Authority of Singapore', 'two', 'the first quarter', '2020', 'two', 'May 18', 'Port Authority of Singapore', 'fourteen days', 'at least fourteen days', 'Singapore', 'COVID-19', 'the last fourteen days', 'Singapore', 'COVID-19', 'Singapore', 'the 14 days', 'Singapore', 'COVID-19 Polymerase Chain Reaction', 'PCR', 'Singapore', 'Singapore', 'State', 'Cargo', 'at least 14 days', 'Port Authority of Singapore', '2', 'COVID-19', 'January 27', 'six', 'Lankan', 'CMA CGM URAL', 'the Gulf of Aden', 'China', 'Suez', 'Mediterranean', 'Black Sea', 'Singapore', 'Chinese', 'Shenzhen', 'January 15', 'Xiamen', 'January 14', 'Ningbo-Zhoushan', 'January 11', 'Yangshan', 'January 8-9', 'February 3', 'sixteen', 'Chinese', 'sixteen', 'Guangzhou', 'Shanghai', 'Ningbo', 'Jiangsu', 'Shandong', 'Tianjin', 'Fuzhou', 'Zhuhai', 'Wuhan', 'Xiamen', 'Chongqing', 'Zhanjiang', 'Liaoning', 'Hebei', 'Beibu Gulf', 'Anhui', 'Chinese', 'the Port of Montreal', 'Saint John', 'New Brunswick', 'the US Food and Drug Administration', 'CP Rail', 'Saint John', 'New Brunswick', 'the United States', 'CP Rail', 'the US FDA', 'FDA', '•', 'FDA', 'FDA', '•\\tCommon', '•\\tEstimated', '•\\tPackage', '•\\tCountry of Production', '•\\tManufacturer', '•\\tShipper', '•', 'Italian', 'Sotras', 'SRL', 'Genova', 'Italy', 'September 17', 'Via Sampierdarena', 'Genova', 'April 6', 'South Korea', 'FTZ', 'COVID-19', 'Incheon International Airport', 'around 10 percent', '3.3.', 'FTZ', 'the Busan Port', '30 percent', '12 square kilometers', 'at least 25', 'the Indus River', 'Khairpur', 'up to 500,000', 'Sindh', 'Sunday, September 6', 'Karachi', 'Sindh Province', 'Karachi', 'six', 'The Pakistan Navy', 'Sindh Province', 'Karachi', 'Sindh Province', 'at least 72', 'at least 22', '622', 'July 8', 'Tenaga Dua', 'July 7', 'Chittagong', 'July 3', 'Eastleigh Station', 'Station Hill', 'Leigh Rd', 'Southampton Central Station', 'Fareham', 'Eastleigh', 'Sweden', 'the Baltic Sea', 'Russia', 'Belarus', 'Aleksandr Lukashenko', 'earlier this month', 'Tuesday', 'Gotland', 'the Baltic Sea', 'Sweden', 'the Baltic Sea', 'Belarusian', 'Lithuania', 'last weekend', 'Russian', 'St. Petersburg', 'the coming days', 'first', 'Sweden', 'Moscow', 'Belarus', 'Russian', 'Ukraine', '2014', 'US', 'Kremlin', 'February 11', 'Maersk', 'the Port of Bremerhaven', 'Germany', 'Ciara', '1 to 2 days', 'the Czech Republic', 'Slovakia', 'February 14', 'Storm Dennis', 'the London Gateway', 'February 15', 'February 14', 'Storm Dennis', 'the Port of Southampton', 'February 15', 'Storm Francis', 'Wednesday', '26 August', 'The Royal Netherlands Meteorological Institute', 'The Hague', 'Heerhugowaard', 'Noord', 'Rotterdam', 'two', 'March 12', 'the Baltic Sea', 'Poland', 'Sweden', 'Sweden', 'Poland', 'Karlskrona', 'Gdynia', 'Gdansk', 'Trelleborg', 'Swinoujscie and Ystad to Swinoujscie', 'the coming days', 'Long Beach', 'Long Beach', 'approximately six kilometers', 'Gulfport', 'August 27', 'Surge Warning', 'Freeport', 'Texas', 'the Mississippi River', 'Hurricane Laura', 'the National Hurricane Center', 'NHC', 'September 21', 'the U.S. National Hurricane Center', 'NHC', 'Surge Warning', 'Port Aransas', 'Texas', 'Rockefeller Wildlife Refuge', 'Louisiana', 'Copano Bay', 'Aransas Bay', 'San Antonio Bay', 'Matagorda Bay', 'Galveston Bay', 'Sabine Lake', 'Lake Calcasieu', 'Tropical Storm Beta', 'the next 36 hours', 'August 26', 'Freeport', 'Texas', 'San Luis Pass', '10-12 feet', 'Sea Rim State Park', 'Texas', 'Intracoastal City', 'Louisiana', 'Sabine Lake', '7-11 feet', 'Intracoastal City', 'Morgan City', 'Vermillion Bay', '6-9 feet', 'Port Bolivar', 'Texas', 'Sea Rim State Park', 'San Antonio', 'CPS Energy', '13', 'approximately 1,500', 'February 24', 'German', 'the Port of Hamburg', 'Germany', 'Europe', 'HHLA', 'HHLA Container', 'Burchardkai', 'February 24', 'London', 'Bakerloo', 'London', \"Queen's Park\", 'Harrow & Wealdstone', 'Dutch', 'January 28', 'January 28', 'the Port of Antwerp', 'about a dozen', 'January 29', 'Everstream Analytics', '24-hour', 'February 6', 'Le Havre', 'Marseille', 'the Port of Marseille and', 'the Port of Marseille', 'February 7', '18:00 to February 8', 'French', 'April 20', 'the Port of Felixstowe', 'April 20 and 21', 'June 17', '40', '74', 'Port of Fremantle', 'Australia', 'June 17 - 18', 'July 20', 'Port of Busan', 'July 24', 'June 25', 'between the afternoon of June 29', 'June 30', 'August 20', 'Port of Dalian', '02:00 to 20:00', 'August 24', 'that day', 'September 23', 'Yokohama Port', 'Japan', 'September 24', 'early morning', 'February 7', 'the Bureau of Meteorology', 'February 7-8', 'the Port of Sydney', 'February 7', 'the Macquarie Coast', 'Coffs Coast', 'Hunter Coast', 'Illawarra Coast', 'February 8', 'Hunter Coast', 'Illawarra Coast', 'Sydney', 'Macquarie Coast', 'Batemans Coast', 'Eden Coast', 'February 3', 'Batemans Coast', 'Eden Coast', 'Sydney', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'February 4', 'Eden Coast', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'the Bureau of Meteorology', 'February 4-5', 'Brisbane', 'Sunshine Coast Waters', 'Moreton Bay', 'Gold Coast Waters', 'February 4', 'Sunshine Coast Waters', 'Moreton Bay', 'Gold Coast Waters', 'the next day', 'January 22', 'the Bureau of Meteorology', 'January 22', '23', 'January 22', 'BOM', 'Byron Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'January 23', 'BOM', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'China Steel Growth', 'Kaohsiung', '04:00', 'August 4', 'WAN', '16:30', 'July 13', 'the Port of Fremantle', 'the evening of', 'July 13', 'the afternoon of', 'July 14', 'DP World', 'Southampton', '04.00', 'August 24', 'San Antonio', '32', '60 kph', 'San Antonio', 'August 25', 'Bremerhaven', 'August 26', '08:00 to August 27', '02:00', 'April 27', 'DCT Pier 1', 'the Port of Durban', 'South Africa', '12:46', 'April 27', 'April 3', 'the Port of Durban', 'South Africa', 'April 3', '204', 'DCT Pier 2', '13:00', 'Berth 108', 'Landside and Rail', 'May 10 morning to evening', 'the Port of Yokohama', 'April 21', 'the Port of Rotterdam', 'the day', 'at least 19:00', 'September 25', 'the Port of Rotterdam', 'the late evening', 'September 25', 'the Port of Southampton', 'between 15:00 and 17:00', 'Italian', 'March 26', 'the early morning', 'the Port of Genoa', 'Italy', '18:00', 'February 20', 'the DP World Southampton Terminal', 'the United Kingdom', 'March 25', 'the evening of', 'March 26', 'the morning of March 27', 'March 25', 'the afternoon of March 26', 'the early morning of March 27', 'the Port of Tianjin', 'Sydney', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'January 31', 'Waigaoqiao', 'the Port of Shanghai', 'late May 29 to May 30', 'noon', 'April 24 to the next day', 'the Port of Busan', 'September 25', 'the Durban Port', 'September 25 and September 26', 'September 4', 'the Port of Kwangyang', 'South Korea', '12:00', 'September 6', 'September 8', 'January 31', 'Port of Tianjin', 'February 4', 'the next morning', 'January 7', 'the Port of Yokohama', 'the morning of January 8', 'the morning of the next day', 'August 21', 'the Port of Felixstowe', 'United Kingdom', '10:00 to 19:00', 'August 21', 'July 10', 'the Port of Qingdao', 'China', '14:00', 'July 12', 'July 13', 'the Port of Qingdao', 'the morning', 'June 29', 'April 16 morning', 'the evening', 'the Port of Dalian', 'April 20', '20 morning', 'afternoon', 'the Port of Qingdao', 'January 6', 'the Port of Busan', 'the morning', 'January 8', 'January 6', 'Shanghai', 'the Port of Yangshan', 'the evening', 'January 7', 'January 8', 'January 6', 'the Port of Yokohama', 'the evening', 'January 8', 'January 9', 'January 23', 'the Port of Busan', 'South Korea', 'January 27', 'January 23', 'the Port of Kobe', 'Japan', 'early January 27', 'January 23', 'the Port of Osaka', 'Japan', 'early January 27', 'January 23', 'the Port of Tokyo', 'Japan', 'January 28 and January 29', 'January 23', 'the Port of Yokohama', 'Japan', 'January 28 and January 29', 'June 17', '40-45', '74-83', 'Port of Adelaide', 'Australia', 'June 20 - 21', 'May 29', 'Port of Ningbo', 'May 30', 'early morning', 'July 15', 'Port of Shanghai', 'China', 'July 19', 'July 23', 'the Port of Durban', 'South Africa', 'July 24', 'July 23', 'the Port of Sydney', 'Australia', 'between July 27 and July 29', 'July 21', 'the Port of Dalian', '04:00', 'July 23', 'July 24', 'July 3', 'the Port of Rotterdam', 'Netherlands', '08:00 to 23:00', 'July 5', '05:00 to 23:00', 'July 4', 'July 14', 'the Port of Yokohama', 'Japan', 'July 14 and July 15', '14:00', 'July 14', 'July 15', 'Sydney', 'March 5 to 6', 'Pier 1', 'Port of Durban', '20.30', 'September 20', '22:20', 'the same day', 'March 2', 'Port of', 'Fuzhou', 'the morning', 'the afternoon of March 5', 'Hong Kong', '60 percent', 'three days', 'first', 'New York City Subway', 'six', 'Third Avenue–138th Street', 'early Tuesday morning', 'Suez Canal Economic Zone', 'Zaki', 'Dubai Ports World', 'second', \"Ain Sokhna's\", 'coming months', 'Solidarity', 'Canada', 'CN Rail', 'British Columbia', 'Canada', 'VIA', 'VIA Rail', 'Thursday', 'Montreal', 'Quebec City', 'Saint-Lambert', 'Montreal', 'Ottawa', 'Saturday', 'Windsor', 'Quebec City', 'Sunday', 'VIA Rail and CN Rail', 'approximately 1,000', 'VIA', '450', 'CN Rail', 'Justin Trudeau', '6,000', '$435 million', 'daily', '$250 billion', 'every year', 'Canadian', 'Eastern Canada', 'Atlantic', 'the CN Rail', 'Canada', 'the Port of Vancouver', 'Atlantic Canada', 'Vancouver', 'Canada', 'Intelligence', 'Everstream Analytics', 'Mumbai', 'Mahrashtra', 'COVID-19', 'Red Zones', '733', 'India', 'Red Zones', 'Orange Zones', 'Green Zones', 'the Port of JNPT', 'DeLand', 'Tuesday', 'afternoon', 'The National Weather Service', 'Melbourne', 'Wednesday', 'Leesburg', 'Virginia', 'Friday 7 February', 'Route 15', 'Drive SW', 'Country Club Drive SW', 'Sydney', 'hundreds', 'Galston Gorge', 'the coming days', 'Pitt Town Bottoms', 'Hawkesbury River', 'South Creek', 'Gronos Point', 'North Richmond Lowland', 'Hawkesbury River', 'Brahma Road', 'Poor Clares', 'Douglas Street', 'Bells Line of Road at Redbank Creek', 'Richmond Lowlands', 'Springwood Rd', 'the Hawkesbury River', 'Price Lane', 'Price Lane', 'Northeast', 'Pughs Lagoon', 'Francis St', 'Strong Place', 'Jersey St', 'Dight St', 'Evans Cres', 'Dight St', 'Hawkesbury Valley Way', 'Rickabys Creek', 'Hawkesbury River', 'Springwood Rd', 'Ausgrid', 'Sydney', 'Central Coast', 'the Sydney Harbour Tunnel', 'Tuesday', 'morning', 'July 17', \"the Tangshan Lunan District People's Government\", '92', 'Lunan District', 'the Southern District', 'Tangshan Haifeng Cable Co., Ltd.', 'Tangshan Liutong Industrial Co., Ltd.', 'Tangshan Senyuan Electric Complete Equipment Manufacturing Co., Ltd.', 'Tangshan', 'Shenteng Railway', 'Tangshan Lunan Longlida Plastic Pipe Factory', 'Tangshan Lunan Manli Plastic Factory', 'Tangshan', 'Tangshan Haijing FRP Co., Ltd.', 'Tangshan Xinda Electric Equipment Co., Ltd.', 'Tangshan Gaoxin Electric Appliance Factory', 'Tangshan Yike Electrical Equipment Co., Ltd.', 'Tangshan Innovation Coal Preparation Equipment Co., Ltd.', 'Tangshan Wein Textile Co., Ltd.', 'Tangshan', 'Tangshan Haokai Environmental Protection Equipment Co., Ltd', 'China National Heavy Duty Truck Group', 'Tangshan', 'Lunan Xinghua', 'Tangshan Ruishuo Electric Complete Equipment Co., Ltd', 'Tangshan Jikaile Electric Power Equipment Co., Ltd.', 'Tangshan Cable Co., Ltd', 'Tangshan Jixiang Insulation Industry and Trade Co., Ltd.', 'Tangshan Juntong Technology Co., Ltd', 'Tangshan', 'Tangshan Chengyuan Machinery Manufacturing Co., Ltd.', 'Tangshan Weijin Technology Co., Ltd.', 'Tangshan Lunan Feida Rubber Products Processing Factory', 'Tangshan Shengli Oil Chemical Co., Ltd.', 'Tangshan Kailuan Xingguang Chemical Co.', 'Tangshan Lianchuang Rubber Products Co., Ltd.', 'Tangshan Huitong Jinyuan Technology Co., Ltd.', 'Tangshan', 'Glass Products Co., Ltd.', 'Tangshan Fengnan', 'District Huijin Plastic Products Co., Ltd.', 'Korean', 'Sunrise Sambu', 'Japanese', 'Seikai Maru', 'April 1', 'Kawasaki', 'Tokyo Bay Aqua Line Expressway', 'Kawasaki Port', 'Botlek Rotterdam', 'the night of January 17', 'three', 'Botlek', 'September 10', 'Iranian', 'U.S.', 'Wednesday', 'Freeport', 'Texas', 'U.S.', 'last month', 'Iran', 'Venezuela', 'Venezuela', 'Iran', 'Oki Maru', 'Vietnamese', 'Con Dao Archipelago', 'the morning of June 18', 'Some 1000 tons', 'HUA HU', 'May 25', 'Port Elizabeth', 'South Africa', 'Singapore', 'Angola', 'Port St Johns', 'the afternoon', 'May 27', '18:30', 'May 27', 'the New Jersey Turnpike', 'Newark', 'Monday morning', 'Route 3', 'Kafirea Straits', 'Myrtoan Sea', 'May 7', 'Piraeus', 'early May 8', 'southeast Attica', 'Greece', 'the same day', 'March 22', 'G4', 'Shenzhen', 'August 19', 'IMO 9274642', 'Malta', '27', 'Libyan', 'August 5', 'Genova', 'Italy', 'La Skhira', 'Tunisia', 'Maltese', 'Maersk', 'New York City', 'COVID-19', 'The United Federation of Teachers', 'around 133,000', '10 September', 'APM Terminals', 'the Port of Los Angeles', 'March 17', 'Normal gate hours', 'March 18', 'Yusen Terminals', '212-223', 'second', 'March 17 and 18', 'January 7', 'German', 'the Port of Hamburg', 'Germany', 'the morning of January 7', 'recent days', 'Mapuche', 'Araucanía', 'Last weekend', 'Collipulli, Curacautín', 'Ercilla', 'Traiguén', 'Victoria', 'Chilean', 'Convention C169', 'the International Labor Organization', 'Mapuche', 'Sunday', 'Mapuche', '48', 'Wednesday evening', '15', 'Araucanía', 'Padre Las Casas', 'At least 14', 'Mapuche', 'Weichán Auka Mapu', 'Araucanía', 'Víctor Manoli', 'First', 'COVID-19', 'Mapuche', 'Araucanía', 'Araucanía', 'Bío Bío', 'Chilean', 'Mapuche', 'Friday', 'August 7', 'Chile', 'the coming weeks', 'February 12', 'the Port of Vancouver', 'British Columbia', 'Centerm', 'Delta Port', 'up to a week', 'January 22', '14:00', 'Port of Barcelona', 'January 22', 'Port of Felixstowe', 'January 22', 'Port of Valencia', 'September 17', 'Laem Chabang Terminal', 'Thailand', 'September 27', '12 pm to 6 pm', 'Terminal', 'Terminal D', 'Terminal', 'London', 'Tuesday', 'morning', 'The Circle Line', 'Hammersmith', 'Edgware Road', 'Latimer Road', 'Hammersmith', 'City Line', 'Hammersmith', 'Edgware Road', 'London', 'South Tottenham', 'Network Rail', 'Stratford', 'Clapham Junction/Richmond', 'Gospel Oak', 'Thailand', 'Bangladesh', '5th', 'January 8', 'Bangkok', 'FTA', 'Bangladesh', 'Port of Ranong', 'the Andaman Sea', '5-days', 'Port of Bangkok', 'Laem Chabang Ports', 'Malaysia', 'Singapore', '7-12 days', 'Bangladesh', 'Thailand', 'third', 'South Asia', 'India', 'Pakistan', 'annual', 'USD 1.25 billion', '2018', 'Thailand', 'Bangladesh', 'Thailand', 'Bangladesh', '5th', 'January 8', 'Bangkok', 'FTA', 'Bangladesh', 'Port of Ranong', 'the Andaman Sea', '5-days', 'Port of Bangkok', 'Laem Chabang Ports', 'Malaysia', 'Singapore', '7-12 days', 'Bangladesh', 'Thailand', 'third', 'South Asia', 'India', 'Pakistan', 'annual', 'USD 1.25 billion', '2018', 'Thailand', 'Bangladesh', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', 'week 42', 'Hong Kong', 'Yantian', 'Shanghai', 'PNW', 'Pusan \\u200b\\u200b– Kaohsiung', 'Hong Kong', 'Qingdao', 'Ningbo', 'Shanghai', 'Qingdao', 'Ningbo', 'LA', 'Shanghai', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'between weeks 27 and 31', '29', '31', 'Hong Kong', 'Yantian', 'Shanghai', 'Hong Kong', '29', '31', 'Qingdao', 'Ningbo', 'Shanghai', '28', '29', '30', '31', 'Nhava Sheva', 'Cai Mep – Haiphong', 'Ningbo', 'Shekou', 'Singapore', '(void weeks 28', '30', '27-31', 'Shanghai', 'Ningbo', 'LA', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'between weeks 27 and 31', '29', '31', 'Hong Kong', 'Yantian', 'Shanghai', 'Hong Kong', '29', '31', 'Qingdao', 'Ningbo', 'Shanghai', '29', '31', 'Nhava Sheva', 'Cai Mep – Haiphong', 'Ningbo', 'Shekou', 'Singapore', '(void weeks 28', '30', '27-31', 'Shanghai', 'Ningbo', 'LA', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 40', 'week 41', 'Ningbo', 'Shekou', 'Singapore', 'Shanghai', 'Ningbo', 'Shekou', 'Port Kelang', 'Jebel Ali – Hamad', 'Hamad', 'Jebel Ali –', 'Singapore', 'Shanghai', 'Jebel Ali – Dammam', 'Singapore', 'Hong Kong', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'FE2', 'week 40', 'Pusan – Shanghai', 'Ningbo', 'Yantian', 'Singapore', 'Suez Canal', 'Rotterdam', 'Suez Canal', 'Port Kelang', 'Pusan', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'Extra Loader Program', 'weeks 40', '41', 'Qingdao', 'Ningbo', 'Shanghai', 'Yantian', 'Suez Canal', 'Antwerp', 'Suez Canal', 'Singapore', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', 'week 43', 'Rotterdam', 'Antwerp', 'Philadelphia', 'New York', 'Antwerp', 'New Orleans', 'London', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', 'Hong Kong', 'Yantian', 'Suez Canal', 'Rotterdam', 'Antwerp', 'Suez Canal', 'Jebel Ali', 'Yantian', 'Hong Kong', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', '44', 'Ningbo', 'Suez Canal', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', '45', 'Shanghai', 'Ningbo', 'Singapore', 'Suez Canal', 'Suez Canal', 'Pusan', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', '45', 'Pusan \\u200b\\u200b- Ningbo - Shanghai - SPRC - Singapore - Jeddah - (', 'COVID-19', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'week-29', 'Shanghai', 'Ningbo', 'Singapore', 'Singapore', 'COVID-19', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'weeks 28', '31', 'Shanghai', 'Ningbo', 'Kaohsiung', 'Singapore', 'La Spezia', 'Singapore', 'Ningbo', 'Shanghai', 'Singapore', 'Istanbul', 'Singapore', 'Kaohsiung', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 41', 'weeks 40-41 and 43', 'Ningbo', 'Shanghai', 'Pusan', 'Panama Canal', 'Caribbean', 'New York', 'Caribbean', 'Panama Canal', 'Ningbo', 'Shanghai', 'Pusan', 'Panama Canal', 'Caribbean', 'Charleston', 'Caribbean', 'Panama Canal', 'Panama Pacific Call – Pusan – Ningbo', 'COVID-19', 'Hapag-Lloyd', 'Yang Ming', 'HMM', 'September 2020', 'October 2020', 'Busan', 'Shanghai', 'Ningbo', 'Yantian', 'Singapore', 'Rotterdam', 'Le Havre', 'Hamburg', 'Rotterdam', 'Singapore', 'FE2', 'Busan', 'Shanghai', 'Ningbo', 'Yantian', 'Singapore', 'Le Havre', 'Hamburg', 'Rotterdam', 'Port Klang', 'October 2020', 'Ningbo', 'Shanghai', 'Yantian', 'Rotterdam', 'Hamburg', 'Antwerp', 'London', 'Singapore', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'July', 'Hong Kong', 'Yantian', 'Panama Canal', 'Panama Canal', 'Panama Pacific Call', 'Ningbo', 'Shanghai', 'Pusan', 'Panama Canal', 'Caribbean', 'Charleston', 'Caribbean', 'Panama Canal', 'Panama Pacific Call – Pusan – Ningbo', 'Hapag-Lloyd', 'HMM', 'Ocean Network Express', 'Yang Ming', 'July', 'Qingdao', 'Ningbo', 'Singapore', 'Jebel Ali – Dammam', 'Abu Dhabi', 'Port Kelang', 'Singapore', 'Hong Kong', 'Shanghai', 'Ningbo', 'Shekou', 'Port Kelang', 'Jebel Ali – Hamad', 'Hamad', 'Jebel Ali –', 'Singapore', 'Shanghai', 'Qingdao', 'Jebel Ali – Dammam', 'Singapore', 'Hong Kong', 'The Brazilian Development Bank', 'DAGNL', 'DTA Engenharia', 'Garin', 'Alvarez & Marsal', 'Lobo & De Rizzo', 'Navarro Prado Advogados', 'Santos', 'São Sebastiao', 'Sao Paulo', 'The Civil Protection Centre', 'four', 'Macao', 'Zhuhai', 'Typhoon Higos', 'two', 'Korea Shipbuilding & Offshore Engineering', 'Daewoo Shipbuilding & Marine Engineering', 'first', '3 November', 'CSBC', 'Kaohsiung', 'Tsai', 'the third quarter of 2024', '2025', '8,000kgs', 'Qingdao', 'China', 'Kenyan Navy', 'USD14mn', 'Lake Victoria', 'first', 'China', 'Europe', 'Shenzhen', 'Guangdong province', 'Duisburg', 'Germany', 'Guangdong', 'Chinese', 'South China Sea', 'Manila', 'Beijing', 'Port Hedland', '17', '21', 'COVID-19', 'Taipei', 'the Center of Fluvial', 'Paraguay', 'Cafym', 'Esteban', 'Santos', '5mn tonnes', '2020', '30%', '17mn', '2019', 'The Health and Welfare', 'Park Neung-hoo', 'Seoul', 'Gyeonggi', 'Incheon', 'three years', 'USD19605', 'The Hong Kong SAR Police Force', 'the Immigration Department', 'the Guangdong Coast Guard Bureau', 'more than 100', '17', 'three', 'USD1.1mn', 'Japanese', 'Cambodia', 'Sihanoukville', 'Free and Open Indo-Pacific', 'The Mahati Infra Services', 'the Uganda Lake Victoria Fuel Transportation', 'Bugiri Bukasa', 'Port Authority of Singapore', 'Crew Facilitation Centre', 'three', 'the Tanjong Pagar Terminal', 'The Ministry of Transport', 'Vostochny', 'Vladivostok', 'the Big Port', 'St. Petersburg', 'Hengqin', 'Macao', 'Zhuhai', 'The People’s Liberation Army', 'PLA', 'Hong Kong', 'Hong Kong', 'Huizhou', 'the South China Sea', 'The Planning and Economic Development Ministry', 'East Port', 'The Seychelles Port Authority', 'Port Victoria', 'Intelligence', 'Everstream Analytics', 'July 8', 'the Port of Montreal', 'the Port of Montreal', 'two', 'Société Terminaux Montréal Gateway', '15:00', 'July 2', 'at least 19:00', 'July 4', 'December 2018', 'The South Durban Community Environmental Alliance', 'Mossel Bay', 'The Suez Canal Economic Commission', \"Port Said's\", 'Eastern Port', 'The Tangshan Maritime Safety Administration', 'the Bohai Sea', 'The Tangshan Maritime Safety Administration', 'the Bohai Sea', 'US', 'three', 'Hong Kong', 'China', 'The US State Department', 'the Hong Kong Normalization Executive Order', 'three', 'Hong Kong SAR', 'Tuesday', 'the Shenzhen Bay Control Point', 'Hong Kong Port', 'bin', 'approximately 10:25 AM', 'Approximately 20', 'Telegram', 'China', 'two days', 'two', 'three days', 'Tuesday', 'third', 'Hong Kong', 'just over 24 hours', 'two', 'the Caritas Hospital', 'Monday', 'morning', 'George V Memorial Park', 'Monday', 'evening', '2019', 'nCoV', 'China', 'Telegram', 'three', 'the coming days', 'Hong Kong', 'the coming days', 'June 23', 'thousands', 'Apple iPhones', 'Nanjing', 'the Shanghai-Rongcheng Expressway', 'January 22', 'three', 'Hong Kong', 'Chep Lap Kok Island', 'Lantau Island', 'three', 'three', 'Shenzhou 19', 'early on the morning', 'February 17', 'Zhoushan', 'Shanghai', 'Guangzhou', 'China', 'the U.S. Bureau of Industry and Security', 'BIS', 'Tianjin 764 Avionics Technology Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'the U.S. Bureau of Industry and Security', 'BIS', 'Tianjin Broadcasting Equipment Co., Ltd.', 'the U.S. Entity List', 'Chinese', 'the South China Sea', '24', 'Chinese', 'the Entity List', 'BIS', 'the Export Administration Regulations', 'EAR', 'January 27', 'Tianjin Customs', 'the Port of Tianjin', \"Entry and Exit Health Declaration Card of the People's Republic of China\", 'today, January 29', 'the Binhai International Airport', 'February 1', 'Tianjin', '32', '22:00', 'January 31', 'Tianjin', 'March 2', 'that Tianjin Port', 'March 1', '12:00', 'Tianjin Port', 'February 3', 'Tianjin', 'Tianjin', '32', '22:00', 'January 31', 'London', 'Videos', 'Everstream Analytics', 'Interstate 526', 'Charleston', 'Wednesday', 'morning', 'Clements Ferry Road', 'Several kilometers', 'February 3', 'the Pier 1', 'Port of Durban', 'South Africa', '20:04', 'February 18', 'Praça Cândido Gafree', 'Santos Port', 'August 12', 'August 17', 'the Santos Port Authority', '11:00 PM', 'July 14', '18:30', 'July 13', 'Staunton', 'Augusta Country', 'Virginia', 'Buckingham Branch Railroad', 'the morning of', 'CSX', 'Nashville', 'TN', 'Cayce', 'SC', 'Hall Station Road NW', 'Kingston', 'Georgia', 'Hall Station Road', 'Old Hall Station', 'Monday, August 17', 'National Rail', 'Hemel Hempstead', 'London Euston', 'Wembley', 'West Coast', 'Glasgow Central', 'Manchester Piccadilly', 'Wolverhampton', '09:00', 'London Northwestern Railway', '10:30', 'Sydney', 'Monday', 'afternoon', 'Essex', 'George streets', 'the Light Rail Network', 'Quay', 'Town Hall', 'the Port Authority Bus Terminal', 'New York City', 'Fort Lee', 'the Port Authority', '15', 'June 9', 'Transnet', 'the Port of Durban', 'South Africa', 'Langeberg Road', 'February 12', 'Le Havre', 'the Gulf of Mexico', 'Friday', 'approximately 360 miles', 'Corpus Christi', 'TX', 'Sunday', 'Landfall', 'Texas', 'Houston', 'Tuesday', 'Wednesday', 'The National Hurricane Center', 'NHC', 'Friday', 'afternoon', 'NHC', 'Friday', 'night', 'Saturday', 'Beta', 'Texas', 'Brownsville', 'Houston', '12 inches', 'Hurricane Sally', 'Florida', 'Alabama', 'Sally', 'Pensacola', 'FL', '25 inches', 'Texas', 'Texas', 'Tropical Storm Beta', 'Tropical Storm Laura', 'Jamaica', 'at least one', 'Mandela Highway', 'Kingston', 'The National Hurricane Center', 'up to 12 inches', 'the national Meteorological Service', '20:00', 'Monday', 'Tropical Storm Nuri', 'Philippines', 'Friday', '12 June', 'Hong Kong', 'Macao', 'China', '14 June', 'up to 85', 'Tropical Storm Nuri', 'Philippines', 'Friday', '12 June', 'Hong Kong', 'Macao', 'China', '14 June', 'up to 85', 'July 10', 'New York Harbor', 'July 14', 'up to 40', '3', 'up to 3', 'July 14', 'July 11', 'April 30', 'German', 'Nippoldstrasse', 'Hamburg', 'Germany', '12:35', 'April 30', 'June 29', 'the Port of Durban', 'South Africa', 'Bayhead Road', 'August 9', 'Víctor Pérez Varela', 'August 10', 'August 7', 'Maicas', 'Route 5 South', 'Los Angeles', 'Mulchen', 'Bio Bio', 'La Araucania', '17', 'August 6', 'Maquehue', 'Padre Las Casas', 'March 30', 'Benin City', 'Edo', 'China', 'the Lunar New Year', 'COVID-19', 'China', 'last week', 'Dalian', 'Tianjin', 'Qingdao', 'China', 'up to 80 percent', 'China', 'only 20 to 40 percent', 'Hubei', 'April 30', 'April 30', 'Nippoldstrasse', 'Hamburg', 'Thursday, April 16', 'Trump', 'Opening Up America Again', 'three', 'COVID-19', '14-day', 'PPE', 'ten', 'Phase One', 'Phase One', 'more than 50', 'Phase Two', 'Phase Two', 'Donald Trump', 'west coast', 'California', 'Washington', 'Oregon', 'New Jersey', 'Connecticut', 'New York', 'Pennsylvania', 'Delaware', 'Rhode Island', 'Massachusetts', 'Midwest', 'Illinois', 'Michigan', 'Wisconsin', 'Minnesota', 'Indiana', 'Kentucky', 'COVID-19', 'at least the end of 2020', 'COVID-19', '8', 'Singapore Strait', 'June 25', '4', '1', 'Santos', 'Brazil', 'COVID-19', 'FAIRCHEM BLUE SHARK', 'July 27', 'Santos', 'July 11', 'ALANIS', 'FLORENCE', 'July 11', 'Welland Canal', 'Lake Ontario', 'Lake Erie', 'Great Lakes', 'ALANIS', 'Toledo', 'Ohio', 'Lake Erie', 'FLORENCE SPIRIT', 'Montreal', 'Colborne', 'ALANIS', 'Colborne', 'about an hour', 'FLORENCE SPIRIT', 'Welland', 'Chinese', 'Xin Jin Yang', 'Danum 160', 'around 21.00', 'January 22', 'western Singapore Strait', 'Karimunbesar Island', 'Iraq', 'China', 'Danum', 'Port Klang', 'Port of Kuching', 'Malaysia', 'August 26', 'Hapag-Lloyd', 'two', '8,600', 'Sofia Express', 'COVID-19', 'the Port of Vancouver', 'Canada', 'Hapag-Lloyd’s Pacific North Loop 4', 'Kobe', 'Xiamen', 'Kaohsiung', 'Nagoya', 'Tokyo', 'Tacoma', 'Vancouver', 'Vancouver', 'Sofia Express', 'Pusan', 'September 25', 'two', 'the Port of Qingdao', 'COVID-19', 'Chinese', 'Beijing', 'Dalian', 'two', 'South Korean', 'Indonesia', 'Singapore Strait', 'Dl Lily', 'October 9', 'Port Klang', 'Singapore', 'Ch Bella', 'January 11', 'February 14', 'two', 'Universal Winner', 'Aegean Dream', 'Brazilian', 'China', 'Singapore', 'China', 'the Port of Qingdao', 'August 5', 'Typhoon', 'August 3', '18:00', 'Fuzhou', 'the afternoon', 'August 4', 'Aoxing Ship Management', 'the U.S. Commerce Department', 'Iranian', 'Seven', \"the U.S. Treasury Department's\", 'U.S.', 'U.S.', 'Hong Kong', 'Sea Charming Shipping Company Ltd.', 'the U.S. Commerce Department', 'Iranian', 'Seven', \"the U.S. Treasury Department's\", 'U.S.', 'U.S.', 'February 14', 'U.S.', 'China', 'Hong Kong', 'South Korea', 'Taiwan', 'Vietnam', 'Chinese', 'the weekend', 'U.S.', 'Asia', 'COVID-19', 'Australia', 'March 29', 'the Northern Territory', 'Queensland', 'https://au.usembassy.gov/health-alert-u-s-mission-australia-march-29-2020/', 'https://au.usembassy.gov/health-alert-u-s-mission-australia-march-30-2020/', 'https://au.usembassy.gov/health-alert-u-s-mission-australia-march-31-2020/\\n\\n\\n\\n', 'Bangladesh', 'https://bd.usembassy.gov/message-for-u-s-citizens-u-s-embassy-dhaka-bangladesh-4/\\n\\n\\n\\nBrunei', 'Hong Kong', 'https://hk.usconsulate.gov/sm-2020032801/', 'Laos', 'March 30 to April 19', 'https://la.usembassy.gov/health-and-travel-alert-u-s-embassy-vientiane-laos-march-29-2020/\\n\\n\\n\\n', 'Myanmar', 'New Zealand', 'Alert Level 4', 'Singapore', 'Safe-Distancing', 'South Korea', 'https://kr.usembassy.gov/033020-alert-u-s-embassy-seoul-republic-of-korea/', 'Sri Lanka', 'U.S.', 'Timor', 'Leste', 'https://tl.usembassy.gov/alert-u-s-embassy-dili-timor-leste-march-30-2020/\\n\\n\\n\\n', 'Thailand', 'Phuket', 'Thailand', 'Monday', 'the U.S. Embassy', 'Nassau', 'American', 'Bahamas', 'The Bahamas\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f\\u202f \\n\\nEvent', 'May\\u202f18, 2020', 'May 17', '2020', 'May 17', 'Bahamian', '14 days', 'Bimini', 'Monday', 'May\\u202f18', '9:00 p.m.', 'Saturday', 'May 30', 'midnight', 'Family Islands', 'Cat Island', 'Long Island', 'Abaco', 'Andros', 'May 18', 'Mayaguana', 'Inagua', 'Crooked Island', 'Acklins', 'Ragged Island', 'May 4', 'weekday', 'weekend', 'The Ministry of Health', 'Bahamas', 'one', 'Family Islands', 'the Ministry of Health', 'covid19travel@bahamas.gov.bs', 'a Ministry of Health', 'COVID-19 Authorization Travel Card', 'Family Islands', 'May 20', 'Family Islands', 'COVID-19\\u202fTravel\\u202fAuthorization\\u202fCard', 'the Family Islands', 'New Providence', 'Family Islands', 'the Bahamas’ Civil Aviation Authority', 'Curfew', 'Lockdown Information', 'Bahamas', 'May 30', 'May 17', 'Hubert Minnis', 'Bahamian', 'July 1st', '24-hour', 'the month of May', 'each weekend', 'May', '9:00 p.m.', 'Fridays', '5:00 a.m.', 'Mondays', 'U.S.', 'Bahamas', '24-hour', '5:00 a.m.', 'Monday', 'the United States', '1200 EDT', 'May\\u202f18', 'Bahamas', 'U.S.', 'the United\\u202fStates', 'JetBlue', 'Nassau', 'Fort Lauderdale', 'the month of May', 'Freeport', 'Silver Airways', 'Thursdays', 'Freeport', 'Fort Lauderdale', 'Monday', 'the U.S. Embassy', 'Panama City', 'American', 'Panama', 'September', 'August 25', 'the Government of Panama', 'September 7', 'COVID-19', 'Panama', 'September 7', 'Panama', 'Panama Pacifico', 'September 14', 'curfew hours', 'Curfew', '11pm to 5am,', 'Monday', 'Saturday', 'Sunday', 'Bocas del Toro', 'Chiriqui', '7pm to 5am', 'Monday', 'Friday', 'Saturday', 'Sunday', 'the Ministry of the Presidency', 'The Health Alert', 'Friday', 'the U.S. Embassy', 'Panama City', 'American', 'Panama', 'Announcing Changes to Movement Restrictions', 'September', 'American', 'half', 'today', '9/11', 'August 25', 'the Government of Panama', 'September 7', 'COVID-19', 'Panama', 'September 7', 'Panama', 'Panama Pacifico', 'September 14', 'curfew hours', 'Curfew', '11pm to 5am,', 'Monday', 'Saturday', 'days', 'The Health Alert', 'Friday', 'the U.S. Embassy', 'Panama City', 'Health Alert for American', 'Panama', 'August 25', 'the Government of Panama', 'September 7', 'COVID-19', 'Panama', 'the Ministry of the Presidency', 'September 7', 'Panama', 'Panama Pacifico', 'Tuesday night', 'the U.S. Embassy', 'Tegucigalpa', 'American', 'Honduras', 'Location: Honduras\\n\\n\\n\\nEvent:\\u202fRoadblocks in Tegucigalpa', 'Tegucigalpa', 'The U.S. Embassy', 'the U.S. Embassy', 'U.S.', 'U.S.', 'the Government of Honduras', 'one day per week', 'Honduran', 'U.S.', 'at least one', 'Tegucigalpa', 'recent days', 'Saturday, March 28th', 'dozens', 'San Pedro Sula', 'the coming days', 'weeks', 'COVID-19', 'Honduran', 'COVID-19', 'Honduran', 'excessive hours', 'at least 172', 'COVID-19', 'Honduras', 'ten', 'Cortés', '101', 'Francisco Morazán', '39', '18', 'Lempira', '4', 'Monday', 'the U.S. Diplomatic Mission to South Africa', 'Demonstration Alert', 'U.S.', 'Location: University', 'South Africa', 'South Africa', 'The U.S. Embassy', 'the next week', 'The Demonstration Alert', 'The South African Union of Students', 'last week', 'the University of KwaZulu-Natal', 'UKZN', 'Durban', 'SAUS', 'UKZN', 'U.S.', '4', 'Iranian', 'Venezuela', 'the Strait of Hormuz', 'August 14', 'an estimated 1.116 million barrels', 'Liberian', 'Greek', 'IMS SA', 'Bandit Shipping Co', 'Palermo SA', 'Paladine Maritime Inc', 'Vienna Ltd', 'Rifia Shipping Co.', 'Houston', 'U.S', 'Donald Trump', 'Iran', 'Islamic Revolutionary Guard Corps', 'the Strait of Hormuz', 'two', 'August 20', 'U.S.', 'three', 'Hong Kong', 'U.S.', 'China', 'Hong Kong', 'U.S.', 'U.S.', 'August 19', 'Uiltransporti', 'two-hour', 'August 20', 'the Port of Gioia Tauro', 'Province of Reggio Calabria', 'Italy', 'Wednesday', 'British', 'Boris Johnson', 'last week', 'the Home Office', 'British National (Overseas', 'BNO', 'China', 'National People’s Congress (NPC', 'Hong Kong', 'The Home Office', 'United Kingdom', 'Hong Kong', '12 months', 'the current six months', 'BNO', 'UK', 'BNO', 'Hong Kong', '1997', 'Hong Kong', 'China', 'the Home Office', '350,000', 'BNO', 'Hong Kong', 'nearly three million', 'BNO', 'NPC', 'Hong Kong’s', 'Legislative Council', 'Hong Kong', 'BNO', 'Hong Kong', 'recent days', 'UK', 'Dominic Raab', 'Tuesday', 'UK', 'the United States', 'Australia', 'Canada', 'New Zealand', 'Hong Kong', 'NPC', 'Monday', 'the US Department of State', 'Mike Pompeo', 'US', 'Hong Kong', 'Senate', 'Mitch McConnell', 'Taiwan', 'Hong Kong', 'Chinese', 'Hong Kong', 'UK', 'China', 'UK', 'UK', 'Chinese', 'Monday', 'Chennai', 'Andaman', 'Nicobar Islands', 'Port Blair', 'Narendra Modi', 'Port Blair', 'Great Nicobar', 'Kamorta', 'Little Andaman', 'Long Island', 'Middle Andaman', 'Swaraj Dweep', 'up to ten', 'Port Blair', 'Andaman', 'Nicobar Islands', 'recent years', 'December 2018', 'US', '160,000', 'the Ministry of Communications', 'More than 1,400 miles', 'Bharat Sanchar Nigam Limited', 'BSNL', 'September 23', 'five', '24-hour', 'September 24', 'the Piraeus Port', 'Greece', '24 hours', '00:01', 'September 24', 'Piraeus Port', 'the Shipping Ministry', 'September 18', 'United Logistics Incorporated', 'Chapter 7', 'September 17', 'New Jersey Bankruptcy Court', 'United Logistics, Inc.', '11', '15', 'China', 'Diamond Princes', 'Yokohama', 'Japan', 'the United States', 'Approximately 70', 'COVID-19', 'Tuesday', 'the United States Department of Agriculture', 'USDA', 'China', 'Uzbekistan', 'Thousands', 'Alabama', 'California', 'Colorado', 'Delaware', 'Florida', 'Georgia', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maryland', 'Massachusetts', 'Minnesota', 'Mississippi', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'South Carolina', 'Tennessee', 'Texas', 'Utah', 'Virginia', 'Washington', 'West Virginia', 'Wyoming', 'Chinese', 'Chinese', 'USDA', 'US Customs and Border Patrol', 'USDA', 'Chinese', 'The European-Mediterranean Seismological Centre', '3.5', '111 miles', 'Manokwari', 'Indonesia', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '3.6', '14 miles', 'San Antonio', 'Philippines', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.0', '18 miles', 'Manzanillo', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.1', '20 miles', 'Cartagena', 'Chile', 'The U.S. Geological Survey', '4.5', 'three miles', 'Alexandria', 'Jamaica', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', '4.0', 'approximately 30 miles', 'Yokohama', 'The European-Mediterranean Seismological Centre', '4.5', '34 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'August 24', 'the Port of St. Petersburg', 'around 36 hours', 'The U.S. Geological Survey', '4.4', '44 miles', 'San Antonio', 'Puerto Rico', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'September 25', '48 hours', 'the Port of Oakland', 'first', 'first', 'The European-Mediterranean Seismological Centre', '4.5', 'five miles', 'Davao', 'Philippines', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.0', 'approximately 62 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.1', '66 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'June 18', '700', 'Nissan', 'Barcelona', 'article 51', 'the Workers Statute', 'the Government Delegation', 'Mallorca', 'Roger de Llúria', 'Next week', 'the Sant Cugat del Vallès', 'Barcelona', 'the Montcada i Reixac', 'May 4', 'Barcelona', '4.0', 'approximately 71 miles', 'San Antonio de los Cobres', 'The European-Mediterranean Seismological Centre', '4.6', 'eight miles', 'Victoria', 'Philippines', 'European Mediterranean Seismological Centre', 'ML', 'Mw', '4.4', 'approximately 80 miles', 'Taipei', 'the Dubai Duty Free', '9', 'St', 'Marrakech', 'Madrid', 'June 30', 'the City Council', 'Spanish', 'Philippine', '13 August', 'Abu Sayyaf Group', 'Philippines', 'Malaysia', 'Sabah', '2013', 'Idang” Susukan', 'Philippine', 'Davao City', 'Nur Misuari', 'the Moro National Liberation Front', 'one', 'two', 'Moro-Muslim', 'Mindanao', 'Susukan', 'Misuari', 'Philippine', 'Susukan', 'Davao City Sara Duterte-Carpio', 'Rodrigo Duterte', '14 August', 'Susukan', 'Sulu', 'Susukan', '34', 'Philippines', 'Malaysian', 'Susukan', 'the months', 'Talipao', 'Sulu', 'Susukan', 'the Sulu Sea', '2015', 'two', 'Canadians', 'one', 'Malaysian', 'Philippines', '2 May 2016', 'Philippines', 'Susukan', 'Philippine', 'Susukan', 'MarineSectors', '2020', 'IHS Markit Inc.', 'India', 'Food Processing Harsimrat Kaur Badal', '17 September', 'three', 'Punjab', 'Shiromani Akali Dal', 'Narendra Modi’s', 'Bharatiya Janata Party', 'several hundred thousand', 'Punjab', 'Haryana', 'Indian', 'New Delhi', 'India', '22 September 2020', 'thousands', 'Sonu Mehta/Hindustan Times', 'Getty ImagesProtests', 'the coming weeks', 'Badal', 'first', 'Narendra Modi’s', '2014', 'Bihar', 'Tamil Nadu', 'BJP', '303', '542', 'BJP', '86', '250', '101', 'India', '2019', 'COVID-19', 'March', 'BJP', 'BJP', 'Indian National Congress', 'Maharashtra', 'West Bengal', '23 September', 'the Goods and Services Tax', 'COVID-19', 'India', 'second', 'COVID-19', 'the United States', 'November', 'IHS Markit', 'Mumbai', 'New Delhi', 'Chennai', 'Bengaluru', 'India', 'English', 'India', '31 August', 'India', 'first-quarter fiscal year 2020-21', '23.9%', 'this year', 'IHS Markit', 'India', 'annual', 'India', 'Bihar', 'November 2020', 'BJP', 'India', 'COVID-19', 'BJP', 'Bihar', 'first', 'India', 'COVID-19', 'BJP', 'the Rashtriya Swayamsevak Sangh', 'RSS', 'RSS', 'COVID-19', '2020', 'IHS Markit Inc.', 'Honduran', 'Tropical Storm Nana', 'Ocotepeque', 'Copan', 'Santa Barbara', 'Lempira', 'Comayagua', 'La Paz', 'Francisco Morazan', 'El Paraiso', 'Valle', 'Coluteca', '24 hours', 'Olancho', 'the Bay Islands', '90', 'Nana', '80km', 'Isla Roatan', '24km/h', '6 miles', 'Alexandria', 'Four summer', 'Lanalhue', 'Contulmo', 'Bío Bío', 'Chile', '28 August', 'Two', 'Chilean', 'Araucanía', 'Bío Bío', 'Mapuche', 'the same day', '28 August', 'eight', 'five', 'Gesfor', 'Lebu', 'USD4.5 million', '22 August', 'at least four', 'Route Q182', 'Collipulli', 'Angol', 'Malleco province', 'Araucanía', 'nine-year-old', 'Mapuche', 'Chile', 'the past few months', 'Lanalhue', 'Galletué', 'Lonquimay', 'Curacautín', 'Conguillío', 'Mapuche', 'Route 5', '45 km', 'Collipulli', 'Victoria', '27 August', 'the coming days', 'Congress', 'one-year', 'TerrorismSectors', 'Cargo', 'Forestry', '2020', 'IHS Markit Inc.', 'Cristobal', 'Aero Naval Service', 'Senan', '35', 'Netherlands', 'Av del Taller', 'Calzada', 'Saturday, September 19', 'Plaza de la Constitucion', 'September 19, 2017', 'February 6', 'around 12 hours', 'the Busan New Port International Terminal', '12 hours', 'February 8', 'the Busan Hanjin New Port Terminal', 'around 12 hours', 'the coming 3 days', 'February 24', 'the Port of Ningbo', '1.5 days', 'the coming three days', 'February 3', 'the Port of Busan', 'around 0.5 days', 'the next 3-days', 'January 21', 'the Port of Shanghai', '0.5-day', 'the morning of January 23', 'August 13', '1.5-2 days', 'the Port of Shanghai’s', 'Waigaoqiao', '32 hours', 'March 5', 'the Shanghai East Container Terminal', 'the Port of Shanghai', 'the coming 3 days', 'January 30', 'the Port of Yantian', 'around 1 day', 'the next 3-days', 'March 6', 'Port of Ningbo', 'around 0.5 day', 'the coming 3 days', 'March 5', 'morning', 'January 17', 'the Port of Hong Kong', '12 hours', 'January 21', 'the Port of Yantian', '1-day', 'the next 3-days', 'January 21', 'the Shanghai Guandong International Container', 'Yangshan Port', '24 hours', 'February 3', 'Port of Ningbo', 'between 12-36 hours', 'Beilun Container Terminal Phase 4', '12 hours', '3', 'about 24 hours', 'Phase 2', 'about 12', 'Meishan Container Terminal', '24-36 hours', 'Feb 6', 'May 7', '1 day', 'the Port of Piraeus', 'Greece', 'June 24', 'the Port of Xiamen', 'China', '12 hours', 'the next three days', 'September 9', 'the Port of Ningbo', 'Ningbo Beilun Container', '4', '1 day', '3', '2 days', '2', '2 days', 'Meishan', '1-1.5 days', 'the next 3 days', 'the Bay Islands', 'Hurricane Nana', 'Coxen Hole', 'José Santos Guardiola', 'Punta Gorda', 'Punta Caliente', 'August 21', 'the Port of Long Beach', 'week 35', 'May 27', 'Bertha', '30 mph', '48km/h', 'North Carolina', 'Virginia', '1 to 3 inches', 'the coming hours', 'Bertha', 'South Carolina', 'North Carolina', 'Virginia', 'Erie', 'Pennsylvania', '14:00', 'May 28', 'Elmshorn', 'Deutsche Bahn', 'Hamburg', 'Neumuenster', 'August 26', 'BP PLC', 'the U.S. Gulf of Mexico', 'August 23', 'BP', 'four', 'U.S. Gulf of Mexico', 'Thunder Horse, Mad Dog', 'Atlantis', 'BP plc', 'British', 'London', 'United Kingdom', 'July 24', 'the Buckeye Bahamas Hub', 'Grand Bahama Island', 'Port Open', 'September 8', 'the Busan–Geoje Fixed Link', 'the previous day', 'Typhoon Haishen', '8.2-kilometer', 'South Korean', 'Busan', 'Geoje Island', 'Haishen', 'more than 50', 'South Korea', 'Busan–Geoje Fixed Link', 'Mercabarna', 'Ca', '2 & Cl', 'The CCOO Union', 'Tuesday, June 23', 'Thursday, June 25', 'Friday, June 26', 'ANAFRIC', 'Mercabarna', 'Condialiment Serveis', 'approximately 10:00 AM', 'Wedneday, June 17', 'Barcelona', 'January 8', 'Busan New Port International Terminal', 'between late January 7 and early January 8', 'the Port of Busan', '12 hours', 'June 15', '25', 'June 19 to August 30', 'the Koltushskoye Highway', 'Krasnoselsky District', 'Maloye Karlino', 'Gatchina', 'Gostilitsky', 'Starovyborg', 'May 22', '10', 'Leningrad Oblast', '08:00 to 19:00', 'the 12th', '55th', '59th kilometers', 'M-10', '08:00 to 19:00', '593rd', '08:00 to 19:00', '105th', '149th kilometers', '08:00 to 19:00', '479th', '532nd kilometers', '08:00 to 17:00', '50th', '60th', 'P-23', '08:00 to 17:00', '114th', '123rd kilometers', 'A-181', '08:00 to 20:00', 'the 47th to', '95th', '112th kilometers', 'the Vuoksa River', '24 hours', 'A-121', '08:00 to 20:00', '6th', '16th', 'the Leningrad Oblast', 'Norway', 'Finland', 'Estonia', 'Belarus', 'May 25', 'Cargo', 'England', '40', 'NSW', 'May 24', 'the Port of Brisbane', 'Australia', 'Singapore', 'China', 'Melbourne', 'about 73 kilometers', 'Syndey', 'About 40', '74', 'the Port of Le Havre', 'Federation', '24-hour', 'French', 'June 20', 'Vessel', 'an estimated 2,500', 'Le Havre', 'Catena Containers', 'Chaussee John Kennedy', 'Rue de Paris', 'memoriam', 'CGT', '24-hour', 'the Tamil Nadu-imposed', 'June 19 to June 30', 'COVID-19', 'Tamil Nadu', 'Chennai', 'Chengalpet & Kanchipuram', 'the end of June', 'early morning', '14.00', 'Chennai', 'only 33%', 'Chennai', 'air & sea', 'September 25', 'Cornellà de Llobregat City Council', 'Barcelona', 'Nobel Plastiques Ibérica de Sant Joan Despí', '200', 'Ibérica', 'Turkish', 'Orhan Holding', 'Company', 'Renault', 'afternoon', 'earlier this month', 'Villamuriel de Cerrato', 'the Valladolid Assembly', 'Renault', 'Nobel', 'The Coast Guard', 'Port Condition Recovery', 'Houston', 'Galveston', 'Freeport', 'Texas City', 'Tropical Storm Beta', 'Colima', 'Jalisco', 'Nayarit', 'Tropical Storm Hernan', 'Manzanillo', 'Approximately 300', 'Purificacion', 'Cuixmala', 'Huerta', 'Cihuatlan', 'Puerto Melaque', 'Carretera Federal 80', 'Carretera Cihuatlan-Manzanillo', 'Puerto Vallarta-Manzanillo', 'the Bahia de Banderas', 'San Blas', 'The Carretera Tepic-Puerto Vallarta', 'September 25', 'Montreal', 'August', 'the first week of October 2020', 'up to 14 days', 'French', 'the Port of Le Havre', 'Storm Ciara', 'February 8', '4km', '25', 'the Port of Le Havre', 'June 18', 'May 5', 'May 5', 'Hapag-Lloyd', 'Week 17, 19', '21', 'ASE', 'COVID-19', 'week 17', 'Busan', 'South Korea', 'approximately April 23', 'week 17', 'Busan', 'approximately April 26', 'Hapag-Lloyd', 'weeks', 'ASE', 'Shanghai', 'Ningbo', 'Hong Kong', 'Shekou', 'Singapore', 'Sepetiba', 'Buenos Aires', 'Singapore', 'Hong Kong', 'Shanghai', 'Ningbo', 'Shekou', 'Yantian', 'Hong Kong', 'Singapore', 'Buenos Aires', 'Rio Grande', 'Port Kelang', 'Singapore', 'Hong Kong', 'Maersk', 'week-22', 'COVID-19', 'first', 'Lazaro Cardenas', 'May 23', 'Lazaro Cardenas', 'Balboa', 'Buenaventura', 'Manzanillo', 'Busan', 'Qingdao', 'Shanghai', 'Kaohsiung', 'Shekou', 'Hong Kong', 'Ningbo', 'Gwangyang', 'Yokohama', 'August 13', 'Chinese', 'Zhoushan', 'the Ningbo-Zhoushan Port', 'Brazilian', 'COVID-19', 'Xiamen C&D', 'August 11', '3', 'the coming hours', 'September 13', 'Spanish', 'the Port of Valencia', 'Spain', '09:00', 'September 13', 'the MSC Ajaccio', 'the day', 'the early afternoon', 'March 27', 'Dalian Port', '15:20', 'March 26', 'March 26', '27', 'Danish', 'Maersk', 'two', 'Europe', 'weeks 30', '32', 'the Susan Maersk', 'ME1', 'Jeddah', 'March 6', 'the Port of Dalian', 'March 7', 'midnight to morning', '7 evening', 'Mar 8 morning', 'March 27', '07:15', '18:00 on March 26', '09:00', '17:30', 'March 26', '05:30', 'March 27', 'Indonesia', 'the Confederation of Indonesian Labour Unions', 'Konfederasi Serikat Pekerja', 'Indonesia', 'KSPI', 'Said Iqbal', '28 September', '5 million', '6-8 October', '8 October', 'Said', 'Indonesian', 'the All-Indonesia Confederation of Labour Unions', 'Konfederasi Serikat Pekerja Seluruh', 'Indonesia', 'the All Indonesia Labour Union', 'Serikat Pekerja Seluruh', 'Indonesia', 'Said', 'daily', '29 September', '8 October', 'Indonesia', 'Indonesia', 'August 2020', 'Indonesia', 'Job Creation', 'the next several days', '2014', 'Jakarta', 'Jabodetabek', 'Surabaya', 'Bandung', 'Medan', 'Batam island', 'Said', 'Jakarta', '2019', 'COVID-19', 'last-minute', 'Labour', 'Garments', 'Automotive', '2020', 'IHS Markit Inc.', 'February 11', 'FNPD', 'CGT', '4-hour', 'French', 'February 13', 'the Port of Le Have', '11.00', '15.00', 'February 13', 'Charleston', 'Tropical Storm Bertha', 'January 15', 'DP London Gateway', 'January 15', '16:00', 'January 14', 'September 14', \"DP World's\", 'Fremantle Terminal', 'September 14', 'Port', 'two', 'Dubai Investments Park', 'One', 'Long Beach', 'One', 'Access Bank', 'Adetokunbo Ademola Street', 'Victoria Island', 'Lagos', 'Veterans Road', 'Manila', 'Tuesday', 'afternoon', 'third', 'July 24', 'Filt Cgil Genoa', 'Liguria', 'Uiltrasporti Uil Liguria', 'Liguria', 'August 7', 'Al-Haramain', 'Jeddah', 'August 6', 'August 7', '1,200 square meters', 'al-Sulaymaniyah', 'Mecca', 'Jeddah', 'Medina', 'September 8', 'five', 'the Port of Genoa', 'two', 'Kangaroo Island', 'South Australia', '23', 'Saturday', '4 January', 'Australian', 'Scott Morrison', '3,000', '20', 'four', '47 degrees Celsius', 'Saturday', '4 January', 'January 24', '8,500', 'German', 'Northern Jupiter', 'January 4', 'the Malacca Strait', 'the Port of Singapore', 'Singapore', 'January 14', 'January 17', 'VC N', 'Hamburg', 'Germany', 'Singapore', '24 August 2020', 'Deurne', 'Antwerp', 'two', 'the weekend', 'Antwerp', 'Ekstelaar', '500kg', 'two', 'up to 800kg', '2019', 'Belgian', '62 tonnes', '23%', '2018', 'The Port of Antwerp', 'Europe', 'Brazil', 'Colombia', 'Ecuador', 'Antwerp', 'Europe', 'the Port of Antwerp', 'Latin America', 'March', '2019', 'COVID-19', 'Antwerp', 'Antwerp', 'the Port of Ghent', 'Latin America', 'Europe', 'Marine', 'Death', 'Marine', '2020', 'IHS Markit Inc.', 'Greg Abbott', '23', 'the Gulf Coast', 'Hurricane Marco', 'Hurricane Marco', 'the night of', 'Louisiana', 'Texas', 'the night of', 'August 26', 'Texas Gulf Coast', 'Texas', 'Hardin', 'San Patricio', 'Hong Kong', 'SC', 'Taipei', 'the Ras al Kuh', 'the Gulf of Oman', 'The IRGC Navy', 'Jubail', 'Saudi Arabia', 'Hapag Lloyd', 'Atlantic Loop 1', 'Weeks 26', '28', '29', 'June 25', 'July 14', 'Rotterdam', 'Norfolk', 'June 25, July 9, July 30', 'Hamburg', 'Antwerp', 'London', 'July 14, July 28, August 18', 'Philadelphia', 'New York', 'Hapag Lloyd', 'Atlantic Loop 1', 'Weeks 26', '28', '31', 'June 25', 'July 14', 'Rotterdam', 'Norfolk', 'June 25, July 9, July 30', 'Hamburg', 'Antwerp', 'London', 'July 14, July 28, August 18', 'Philadelphia', 'New York', 'March 6', 'the Port of Le Havre', 'March 5', 'August 19', 'the Hong Kong Observatory', 'HKO', '9', 'the early hours', 'HKO', 'Hong Kong', 'Typhoon', '3', '11:00 and 13:00', 'three', 'Wednesday morning', 'Hong Kong', '30 mm', 'an hour', 'July 28', 'Hong Kong', 'Hong Kong', 'daily', 'July 29', 'Hong Kong', '14 days', 'Marine', 'Hong Kong', 'the 48 hours', 'Asia-World Expo', 'April 20', 'the Houston Ship Channel', '07:15', '22:25', 'April 19', 'April 19', 'Rotterdam', 'some 256kg', 'Ecuador', 'the Port of Said West', 'Egypt', 'March 27', 'Ningbo', '20:15', 'March 26', '05:00 on March 27', '06:30', '14:10', 'March 26', 'the morning of March 28', 'the Jawaharlal Nehru Port Trust', 'Navi Mumbai', 'Wednesday, August 5', 'three', 'Jawaharlal Nehru Port Trust', 'JNPT', 'Mundra Port', '21-day', 'April 6', 'April 14', 'JNPT', 'Mundra Ports', 'Jebel Ali', 'Salalah', 'Colombo', 'At least four', '15', 'Gulistan', 'Gulshan-e-Maymar', 'Karachi', 'Wednesday night', 'June 3', 'Karachi', 'Surjani Town', 'Spectrum Fisheries Ltd', 'September 3', 'the Shell Oil Depot', 'Keamari Terminal 1', 'Karachi', 'around 1:00 PM', 'around two hours later', 'Two', 'three', 'Lima', 'Callao', 'Union Gremial del Transporte Urbano', 'Thursday, September 3', 'Union', 'Aemus', 'Asestraca', 'Camara de Transporte Urbano', 'Conet', 'Conecsa', 'the Houston Ship Channel', 'January 2', 'the Penco Lirquen Port Union', 'April 3', 'Lirquen', 'Penco', 'Chile', 'COVID-19', 'COVID-19', 'Chilean', 'March 27', 'Chilean', 'the Central Port Union', 'CPU', 'COVID-19', 'CPU', 'March 25', 'San Antonio', 'Metro Manila', 'Metro Manila', 'Metro Manila', 'March 15', 'Metro Manila', 'April 14', 'Macao', 'Tropical Storm Higos', '2,722', '17', 'The General Office of the Chinese Communist Party', 'CPC', '17 September', 'CPC', 'China', 'Anbang Insurance Group', 'two years', 'Greg Baker/AFP', 'CPC', 'Xi Jinping', 'Hong Kong SAR', 'Macao SAR', 'Taiwanese', 'China', 'Chinese', \"the National People's Congress\", \"the Chinese People's Political Consultative Conference\", '2019', 'COVID-19', 'The Ministry of Finance', 'between January and July 2020', '8.7%', 'year', 'year', '3.2%', 'USD278 billion', 'CNY640-billion', '29 August', 'WeChat', 'Banyuetan', 'CPC', 'US', 'US', 'Article 7 of China’s National Intelligence Law', 'Chinese', 'US', 'Chinese', 'Chinese', 'the White House’s', 'TikTok', 'Chinese', 'ByteDance', 'US', 'State', 'Mike Pompeo', 'CPC', 'Chinese', 'US', 'India', 'US', 'Australia', 'TikTok', 'US', 'CPC', 'Chinese', 'US', 'the Department of Commerce’s Entity List', 'Indications', 'EU', 'China', 'Western', 'China', 'COVID-19', 'China', 'the Taiwan Strait', 'the South China Sea', 'India', 'the coming winter months', '2020', '1.69%', 'China', 'Democratic', 'US', 'November 2020', 'US', 'Chinese', 'Congress', 'first', 'Chinese', '2020', 'IHS Markit Inc.', 'April 30', 'the Australian Bureau of Meteorology', 'Melbourne', 'April 30', 'May 1', 'April 30', 'the West Coast', 'Port Phillip', 'Western Port', 'Central Coast', 'Central Gippsland Coast', 'East Gippsland Coast', 'May 1', 'Western Port', 'West Coast', 'Central Coast', 'Central Gippsland Coast', 'East Gippsland Coast', 'Port Phillip', 'the Gippsland Lakes', 'April 30', 'the Australian Bureau of Meteorology', 'Sydney', 'April 30', 'May 1', 'April 30', 'Hunter Coast', 'Byron Coast', 'Macquarie Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'May 1', 'Coffs Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'September 10', 'CMA CGM', 'Sydney Port', 'CGM', 'USD 285', 'September 17', 'Sydney', 'US', 'October 10', 'September 9', 'the MSC Mediterranean Shipping Company', 'CGS', 'an additional USD 300', 'September 14', 'U.S.', 'October 8', 'Sydney', 'Sydney Port', 'August 6', 'the Port of Nhava Sheva', 'the Jawaharlal Nehru Port Container Terminal', 'JNPCT', 'the coming days', 'September 8', 'MSC', 'Asia', 'Canada', 'US West Coast', 'week 41', 'Week 41', '9 October 2020', 'Prince Rupert', 'Vancouver', 'Nansha', 'Yantian', 'Shanghai', 'Busan', 'Yokohama', 'September 8', 'MSC', 'Asia', 'Canada', 'US West Coast', 'week 43', 'Week 43', 'Blanking', 'ETA', '20 October 2020', 'Long Beach', 'Yantian', 'Ningbo', 'September 8', 'MSC', 'Asia', 'US East Coast', 'week 41', 'Week 41', '36E', 'ETA', 'Tianjin', '8 October 2020', 'Kingston', 'Savannah', 'Charleston', 'Jacksonville', 'Wilmington', 'Tianjin', 'Qingdao', 'Ningbo', 'Shanghai', 'Busan', 'September 8', 'MSC', 'Canada', 'US West Coast', 'Asia', 'week 44', 'Week 44', '27 October 2020', 'Nansha', 'Yantian', 'Shanghai', 'Busan', 'Yokohama\\nAll', 'Prince Rupert', 'Vancouver', 'September 8', 'MSC', 'US East Coast', 'Asia', 'week 46', 'Week 46', '36W', 'ETA', 'November 2020', 'Busan', 'Tianjin', 'Qingdao', 'Ningbo', 'Shanghai', 'Savannah', 'Charleston', 'Jacksonville', 'Wilmington', 'Kingston', 'three', 'Jawaharlal Nehru Port Trust', 'Navi Mumbai', 'Phil Murphy', 'New Jersey', 'Tropical Storm Isaias', 'July 29', 'the Maritime Union of Australia', 'the DP World Australia', 'DPWA', 'the Sydney DP World', 'July 18', 'August 4 to September 1', 'one hour', '05:00, 13:00', '21:00', 'daily', 'these hours', 'August 5', 'the Port of New York', 'New Jersey', 'the Port Newark Elizabeth Marine Terminal', 'the Port of Albany', 'Tropical Storm Isaias', 'April 6', 'COVID-19', 'the Port of Antwerp', 'COVID-19', 'De Land', 'De Land', 'Plymouth Ave', 'N Woodland Ave', 'New York Ave', 'Florida', 'OP-1', 'up to 180 meters', '10.50 meters', 'first', '2-3 weeks', 'April 30', 'the Port of Dalian', '05:50', 'the day', 'May 1 morning', 'afternoon', 'May 2', 'May 3 morning', 'July 20', 'Port of Dalian', 'July 18', 'July 19', 'evening', 'July 23 to 24', 'August 26', 'DCT Pier 2', 'the Port of Durban', '14:30', 'August 26', 'Pier 1', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '14:30', 'May 13', 'several hours', 'February 12', 'September 24', 'the Port of Rotterdam', 'last week', '6', '25-28', 'this week', 'Maersk', 'Safmarine', 'Antwerp', 'March 1', 'the Port of Chittagong', '18', '16:00', 'February 29', 'Chittagong Prime Mover', '09:00', 'February 26', 'tens of thousands', 'DCT Pier 2', 'the Port of Durban', 'South Africa', 'June 26', 'August 7', 'DCT Pier 1', 'the Port of Durban', '19:00', 'August 6', 'DCT Pier 2', '19:00 and 19:30', 'January 31', 'Port of Dalian', '21:30', 'January 29', '06:00', 'January 31', '18:30', 'January 29', 'January 31', 'the coming hours', 'June 3', 'the Port of Nhava Sheva/JNPT', 'Mumbai', 'India', 'about 24 hours', 'Cyclone Nisarga', 'the coming hours', 'September 3', '02:00', '01:30', 'Pier 2, Port of Durban', 'DCT Pier 1', '11:20', 'Berth 108', 'Berth 202', 'DCT Pier 2', 'London', 'Bakerloo', 'today', '22 February', \"Queen's Park and Elephant & Castle\", 'February 21', 'Keamari', '14', 'Saddar', 'Shahrah-e-Faisal', 'Karsaz', 'February 20', 'Qasim', 'Keamari', 'Charleston Harbor and Resort', 'Patriots Point Rd', 'Marina Rd', 'Three', 'Pier 2', '06.20', 'February 6', '06.00', 'the same day', 'Pier 1', 'the Port of Durban', 'August 20', 'Port of', 'Hong Kong', '16:30', 'August 19', '18:00', 'August 18', 'Tropical Storm Higos', 'April 21', 'the Tianjin Port', '24 hours', 'late April 20 to late April 21', 'August 26', 'Typhoon Bavi', '175000', '00:01', 'August 25', '11:30', 'August 26', 'Ningbo', 'February 18', 'British Columbia', 'Port of Vancouver', 'the Port Rupers', 'the Port of Halifax', 'Vancouver', 'Prince Rupert', 'hundreds', 'last week', 'February 6', 'Coastal GasLink', 'July 14', 'Visakha Solvents Limited', 'Jawaharlal', 'Nehru Pharma City', 'Parwada', 'Visakhapatnam', 'India', 'July 13', 'SSR', '102', 'at least 1', '1', 'Ranky Solvens', 'Port Authority', 'Singapore', 'Jurong Port', 'China', 'Iran', 'Italy', '8', 'Italy', 'Aosta Valley', 'Piedmont', 'Liguria', 'Lombardy', 'Veneto', 'Friuli', 'Giulia', 'Trentino', 'Adige/Südtirol', 'the Republic of Korea', 'the past 14 days', 'China', 'Iran', 'Italy', '8', 'Italy', 'Marina', 'Genoa', 'Savona', 'Ravenna', 'Porto Levante', 'Chioggia', 'Venice', 'Porto Nogaro', 'Monfalcone', 'the Republic of Korea', 'the past 14 days', '•\\tMPA', 'The National Environment Agency’s', 'NEA', 'the Maritime Declaration of Health Form:', 'China', 'Iran', 'Italy', 'the Republic of Korea', 'the past 14 days', 'China', 'Iran', 'Italy', 'the Republic of Korea', 'the past 14 days', 'MPA', 'March 3', 'that Tianjin Port', '12:00 to 16:00', 'March 2', 'Tianjin Port', 'several weeks', 'China', 'weeks', 'the Port of Charleston', 'Tropical Storm Isaias', 'August 4', 'Port of Charleston', 'South Carolina', 'Hurricane Isaias', 'September 11', 'the Port of Charleston', '04:20 to 10:10', 'September 10', 'January 9', 'the Port of Dalian', 'January 7', 'the afternoon of January 8', 'June 10', 'Port of Dalian', 'June 9', 'afternoon', 'June 7', 'morning', 'August 26', 'Felixstowe', '09:00', 'August 25', 'the afternoon', 'August 26', 'August 26', 'Typhoon Bavi', 'Port of Gwangyang', 'August 25', 'at least 12:00', 'August 27', 'February 18', 'the Port of Houston', 'today', 'January 22', 'January 24', '16.00', '08.00', 'January 26', 'Lunar New Year', 'the Port of Kaohsiung', '24-hours', 'July 29', 'the Port of Manila', '8', 'MIP North', 'Caloocan', \"20'(RF\", \"40'(HC\", 'LGICT', 'IRS Cavite', 'ATI Batangas', 'IRS Navotas', 'Bulacan', 'PRLI Malvar', 'MNHPI', 'August 13', 'Port of Qingdao', '10:40 to 19:30', 'August 12', 'July 31', 'the Port of Qingdao', 'China', 'July 30', 'afternoon', 'July 31', 'afternoon', 'August 1', 'August 7', 'the Port of San Antonio', 'Chile', '03:40', 'August 6', 'August 9 afternoon', 'August 1', 'August 4', 'the Port of Virginia', 'Norfolk', 'Tropical Storm Isaias', 'August 13', 'the Port of Xiamen', 'August 10', '21:00', 'August 11 18:00', 'Tropical Storm Mekkhala', 'February 27', 'Port of Durban', '14:15', 'February 10', 'the Port of Antwerp', 'February 10', 'Storm Ciara', 'February 10', 'London Gateway', 'Storm Ciara', 'the weekend', 'several hours', 'the Port of Genoa', 'June 15-20', 'early June', 'July 3', 'the Port of Colombo', 'Sri Lanka', '10 days', 'the Port of Busan', 'February 11', '0.5 days', 'September 10', 'Qingdao Lidong Chemical', 'Qingdao', 'Shandong province', 'China', 'August 7', 'August 3', 'September 3', 'October 2', 'Hamburg', 'Quast Praezisionstechnik GmbH', 'Hamburg', 'Germany', 'Clapham Junction', 'Surrey Quays', '14:00', 'London Overground', 'London Euston', 'the day', 'West Coast', 'London Northwestern Railway', 'Southern', 'Chinese', 'Tangshan', '5.1', 'Videos', 'New Brunswick', 'New Jersey Transit', 'the Northeast Corridor Rail', 'up to 45 minutes', 'Amtrak', 'New Brunswick', 'Railway', 'La Fraternidad', 'Victoria', 'Buenos Aires', 'Ningbo Port', 'COVID-19', 'the Port of Shanghai', 'COVID-19', 'the Tianjin Port', 'COVID-19', '100', 'Montreal City Hall', 'Rue Notre-Dame Est', 'Rue Gosford', 'Lachine', 'OC Line', '603', 'Los Angeles', 'CPS Energy', 'San Antonio', '16:00', 'February 24', 'the DP World Southampton Terminal', '07:30', 'March 10', 'seven', 'China', 'Hun Sen.', 'Five', 'the Sihanoukville Autonomous Port', 'two', 'Ho Chi Minh', 'the Svay Rieng Special Economic Zone', 'February 27', 'about 200', 'March', 'China', 'February 6', 'France', 'Le Havre', 'Thursday', 'morning', 'several hours', 'July 6', 'the Port of Genoa', 'Italy', 'July 6', 'A26', '10-kilometre', 'Masone', 'Voltri Container Terminal', 'the morning hours', 'July 6', 'A7', 'the Voltri Container Terminal', 'Genoa', 'DCT Pier 2', '04.50', 'March 26', 'early in the morning', 'Chinese', '1', 'approximately 3:40 AM', 'Thursday', 'August 20', 'the Yangtze River', 'At least three', '14', 'an estimated 3,000 tons', 'March 24', 'Shenzhen', 'March 15', 'Shenzhen', 'Shenzhen', 'Shenzhen', 'the National Union of Metalworkers of South Africa', 'Numsa', 'Macsteel', 'South Africa', 'June', 'Macsteel', '20 percent', 'Macsteel', 'South Africa', 'Johannesburg', 'Pretoria', 'Durban', 'Bloemfontein', 'Port Elizabeth', 'The Congress of South African Trade Unions', 'Wednesday, October 7', 'South Africa', 'more than one million', 'Durban', 'the Durban Central Police Station', 'Sandile Thusi Road', 'Qwaqwa, Welkom', 'Klersdorp', 'Rustenburg', 'Polokwane', 'Mbombela', 'N2', 'N3', 'Central Business Districts', 'KwaZulu-Natal', 'Houston', 'Pasadena', 'Greater Houston', 'Thursday', 'May 28', 'September 8', 'S-Oil Corporation', 'Ulsan', 'MTBE', 'FCC', 'the weekend of September 5-6', 'Ulsan', '370,000 tonnes', 'MTBE', 'around 4 weeks', 'South Korea', 'Tropical Storm Haishen', 'Ulsan', 'Pohang', 'Yeongdeok', 'Abbott', '29', 'Tropical Storm Beta', 'Aransas, Bee', 'Bexar', 'Brazoria', 'Calhoun', 'Chambers', 'Fort Bend', 'Galveston', 'Hardin', 'Harris', 'Jackson', 'Jasper', 'Jefferson', 'Jim Wells', 'Kenedy', 'Kleberg', 'Live Oak', 'Matagorda', 'Nueces', 'Sabine', 'San Augustine', 'San Patricio', 'Shelby, Travis', 'Victoria', 'Wharton', 'approximately 2.4 million', 'at least 19', 'Bangladesh', 'Cyclone Amphan', 'At least 13,000', 'Satkhira', 'Khulna', 'Jessore', 'Jhalokati', 'Pirojpur', 'Barguna', 'Patuakhali', 'Bhola', 'Barisal', 'Noakhali', 'Feni', 'Chittagong', 'October 6', 'Bosch', 'Castellet', 'Barcelona', 'Spain', 'October 6', 'October 15', '300', 'January 31', '18:00 to 21:30', 'January 29', 'Port of Qingdao', '06:40 to 21:30', 'January 30', 'the coming hours', 'June 18', 'Port of San Antonio', 'Chile', 'June 18', 'August 26', 'Typhoon Bavi', 'Shanghai', '12:00', 'August 25', 'August 26', 'Waigaoqiao', '18:00', 'August 25', '11:30', 'August 26', 'Yanghshan', 'January 9', 'Port of Qingdao', 'January 7', 'the morning', 'January 8', 'January 7', 'August 26', 'Rotterdam', 'August 25', '20:00', 'August 26', '14:00', 'March 20', 'Port of Dalian', 'March 18 noon', 'March 19', 'evening', 'the coming hours', 'April 18', 'the late evening', 'bay pilot', 'the Port of Yokohama', '15:00', 'April 18', 'February 3', 'the Port of Fuzhou', 'the afternoon', 'February 5', 'the next day', 'afternoon', 'April 15', 'April 16 and 17', 'the Port of Shanghai', 'Macao', 'the Special Administrative Region', 'Typhoon Higos', 'early this morning', 'up to 1.5 meter', 'the Galaxy Hotel', 'three', 'Macao Electric Power Authorities', 'Faiziji', 'Inner Harbor', 'Inner Harbor Ferry Terminal', 'Ma Ge', 'Zhuhai', 'Sydney', 'NSW', 'the Industrial Relations Commission', 'Thursday', 'the NSW Rail', '48-hour', 'Monday, August 24', 'Sydney Harbour Bridge', 'the Sydney Harbour Tunnel', 'Cahill Expressway', 'April 9', 'the Sydney Hutchinson', 'the last 24 hours', '15:00', 'this afternoon', 'April 9', 'DP World/Patricks', 'September 7', 'the Port of Saint John', 'New Brunswick', 'the Port of Montreal', 'recent weeks', 'September 9', 'hours', 'September 14', 'August 13', 'the Port of Busan', 'Tropical Storm Jangmi', 'August 10 00:01 to August', '10 19:00', 'August 11', 'Hapag-Lloyd', 'Yang Ming', 'Hyundai', 'Merchant Marine', 'between weeks 27 and 31', '29', '31', 'Hong Kong', 'Yantian', 'Shanghai', 'Hong Kong', '29', '31', 'Qingdao', 'Ningbo', 'Shanghai', '29', '31', 'Nhava Sheva', 'Cai Mep – Haiphong', 'Ningbo', 'Shekou', 'Singapore', '(void weeks 28', '30', '27-31', 'Shanghai', 'Ningbo', 'LA', 'The International Transport Workers’ Federation', 'the International Maritime Employers’ Council (IMEC', 'USD500,000', 'the Singapore Shipping Tripartite Alliance Resilience', 'SG-STAR) Fund', 'The Selangor Health Department', 'two', 'Secondary School', 'Pandamaran Jaya', 'Port Klang', 'COVID-19', 'three', 'Charleston Harbor Marina', 'March 19', 'Tianjin', '19:00', 'March 18', 'March 19', 'Maningrida', 'January 10', 'the Australian Bureau of Meteorology (BoM', 'January 9', 'the Wessel Islands', 'BoM', 'the next 24 hours', 'Cape Don', 'Elcho Island', 'the next 24-48 hours', 'Dundee Beach', 'Gunbalanya', 'Cape Fourcroy', 'Cape Don', 'Elcho Island', 'Cape Shield', 'Darwin', 'Sumber Marine', '5', '13', '232', 'June 16', 'South China Sea', 'Bangka Island', 'Indonesia', 'June 15', 'Batam Island', 'Singapore Strait', 'Banjarmasin', 'Kalimantan', 'Indonesia', 'Barbara', 'two', 'COVID-19', 'Log In Jatoba', 'May 26', 'May 23', 'Chinese', 'Typhoon Higos', 'Zhuhai', 'Wednesday', 'morning', 'Zhuhai', 'Macao', 'Hong Kong', 'Zhuhai Highway Port', '13:00', 'Jiangmen', 'Zhongshan', 'Foshan', 'Guangzhou', 'the Qiongzhou Strait Ferry', 'about 25', 'km/h', 'Inmaconsa', 'Guayaquil', 'Thursday', 'the US Embassy', 'Hanoi', 'Weather Alert', 'Quang Binh', 'Quang Tri', 'Thua Thien', 'Danang City', 'Typhoon Noul', 'early as 9 a.m.', 'Friday, September 18, 2020', 'The U.S. Embassy', 'Hanoi', 'Ho Chi Minh City', 'U.S.', 'Tropical Storm No. 5', 'Typhoon Noul', 'Danang', 'Vietnam', 'Hue', 'Friday, September 18 or Saturday, September 19', '80', 'Vietnamese', 'up to 300', '180 mm', 'Thursday', 'afternoon', 'Friday', 'Quang Tri', 'Thua Thien-Hue', '300-400', 'U.S.', 'Vietnam', 'U.S.', 'the Vietnam National Center for Hydro-Meteorological Forecasting', 'U.S.', 'the United States', 'U.S.', 'Vietnam', 'the Department of State', 'Smart Traveler Enrollment Program', 'U.S.', 'U.S.', 'U.S.', 'US', 'Texas', '31 August', 'Iranian', 'Venezuela', 'US', '13 August', 'four', 'Iranian', 'Venezuela', 'Houston', 'US', 'The United States', 'five', 'Iranian', 'Iranian', 'Venezuela', '24 May', 'The US Department', 'Treasury', 'Venezuelan', 'Cuba', 'six', 'PDVSA', 'December 2019', 'US', 'the past two years', 'PDVSA', 'Russia', 'Rosneft', 'US', '70%', 'Venezuelan', 'Venezuela', 'the US Treasury’s', 'Office of Foreign Assets Control (OFAC', 'US', 'US', 'Venezuelan', 'Iranian', 'Venezuela', 'US', 'Venezuela', 'November', 'US', 'Venezuela', 'US', 'US', 'US', 'US', 'US', 'Venezuelan', 'Iran', 'US', 'Caribbean', 'US', 'Iranian', 'Venezuela', 'Regulatory', 'Inter', 'Oil ©', '2020', 'IHS Markit Inc.', 'NYSE', 'Tom Farley', 'Alibaba', 'Jack Ma', 'Alibaba', 'Daniel Zhang', 'the NYSE Opening Bell', 'the Water Cube', '11 November 2015', 'Beijing', 'China', 'Visual China Group', 'Getty ImagesInternational', '18 August', 'the US State Department', 'US', 'Chinese', 'The Department', 'Chinese', 'the Public Company Accounting Oversight Board', 'the 18 months preceding July 2020', '202', 'Chinese', 'Hong Kong', 'US', 'China', 'at least 11', 'Chinese', '49', 'September 2018', 'Washington', 'US', 'Luckin Coffee', '2019', 'Chinese', 'US', 'two', '2013', 'Washington', 'Chinese', 'Chinese Communist Party', 'CPC', '6 August', 'Donald Trump', 'Chinese', 'US', 'US', 'Chinese', '1 January 2022', 'PCAOB', '1 January 2023', 'Senate', '20 May', 'the House Committee on Financial Services', 'Chinese', 'US', 'US', 'the coming year', 'China', 'Revised Securities Law', '1 March 2020', 'the China Securities Regulatory Commission', 'one-year', 'US', 'Chinese', 'Chinese', 'US', 'HFCA', 'CPC', 'the Securities and Exchange Commission', 'SEC', 'HFCA', 'US', 'Chinese', 'US', 'Shanghai', 'Shenzhen', 'Hong Kong', 'London', 'Singapore', 'Tokyo', 'Beijing', 'Alibaba', 'JD.com', 'Hong Kong', 'Chinese', 'the South China Sea', 'US', 'Chinese', 'US', 'Chinese', 'US', 'Democratic', 'US', 'November', 'US', 'Chinese', 'Congress', 'first', 'Congressional', 'Congressional', '2021', 'SEC', '2020', 'IHS Markit Inc.', 'July 23', 'Galveston', 'Freeport', 'Texas City', 'Tropical Storm Hanna', '24 hours', 'Port Condition Yankee', 'July 23', 'Galveston', 'Freeport', 'Texas City', 'Tropical Storm Hanna', '24 hours', 'Port Condition Yankee', 'July 23', 'Galveston', 'Freeport', 'Texas City', 'Tropical Storm Hanna', '24 hours', 'Port Condition Yankee', 'August 27', 'the United States Coast Guard', 'the Houston Ship Channel', 'Hurricane Laura', 'Tropical Storm Beta', 'the US Coast Guard', 'Port Condition Recovery for the Port of Houston', 'September 22', 'September 17', \"DP World's\", 'Brisbane Terminal', '23:00', 'September 13', '24 hours', '8 hours', '23:00', 'September 13', '07:00 - 23:00', 'September 13', 'January 21', 'the Port of Southampton', '06:30', 'September 29', 'the Port of Manila', '24-hours', 'February 14', 'Vietnam', 'more than 5,000', 'Chinese', 'the Lunar New Year Holiday', 'February 3', 'Haiphong', 'Vietnam', 'Chinese', 'daily', 'Ralph Northam', 'Virginia', 'Hurricane Isaias', 'Virginia', 'dozens', 'the Science Museum of Virginia', 'W Broad St', 'the Commonwealth of Virginia', 'State Health', 'Norman Oliver', 'COVID-19', 'Virginia', 'Ralph Northam', 'June 10', 'the Jawaharlal Nehru Port', '5 days', 'the previous week', 'May 26', 'Shanghai', '1.5 days', 'the coming 3 days', 'January 17', 'the Port of Ningbo', '1-2 days', 'January 17', 'September 17', 'the Guangzhou Oceangate Container Terminal', 'around 12 hours', 'the next couple of days', 'August 25', '4-5 days', 'the DP World', 'Patrick', 'Port Botany', 'Sydney', 'first', 'first', 'January 23', 'the Port of Felixstowe', '1 day', 'the previous week', 'May 13', 'Veterans Road in Western Bicutan', 'Taguig City', 'Metro Manila', 'May 12', 'EUR', '219,918', 'the Australian Bureau of Meteorology (BoM', 'New South Wales', 'NSW', 'Queensland', 'Victoria', 'Queensland', 'NSW', 'Hunter', 'Illawarra', 'Metropolitan', 'Mid North Coast', 'Northern Rivers', 'Northern Tablelands', 'Central Tablelands', 'North West Slopes', 'NSW', 'Mallee', 'Northern Country', 'North Central', 'Central', 'West', 'South Gippsland', 'Wimmera', 'Victoria', 'Brisbane', 'Ipswich', 'Logan', 'Redland City Scenic Rim', 'Queensland', 'Hundreds', 'Wednesday, June 17 and Sunday, June 21', 'Marion Square', 'Meeting St', 'Calhoun St', 'Wharfside St', 'Laurens St', 'Emanuel AME Church', 'Meeting St', 'Calhoun St. CHS Students', 'the Charleston Church Shooting', 'June 17', 'Marion Square', 'July 15', 'the Port of Salalah', 'Raysut', 'Oman', 'COVID-19', 'Terminal', 'July 13', 'Japan', 'approximately 206 miles', 'Tokyo', 'Japan', '14 miles per hour', '40 miles per hour', '50 miles per hour', 'the next 24 hours', '24-hour', 'the early morning', 'the Port of Marseille', 'March 12', 'France', 'Fos Sur Mer', 'Bayonne', 'Bourdeaux', 'Le Havre', 'Rouen, Montoir, Saint Nazaire', 'La Pallice', 'French', 'the coming days', 'Philippines', 'approximately 328 miles', 'Manila', 'Philippines', 'Ticao Island', 'Friday', 'May 15', 'four', '25', 'one', 'Tumauini', 'Isabela', 'the Cagayan River', 'Saturday', 'May 16', 'One', 'Barangay', 'San Vicente East', 'Catanauan', 'Quezon', 'Eastern Samar', 'hundreds', 'COVID-19', 'Jipapad', 'Maslog', 'over 145,000', '50 percent', 'October 26', 'the Port of Tanjung Pelepas', '35-36 hours', 'Sindh', 'UGTA', 'Imran Ismail', 'Lahore', 'Faisalabad', 'Multan', 'Karachi', 'Approximately PKR 350 million', 'USD 2,253,905', 'EUR 2,039,314', 'Murad Saeed', 'Sindh', 'Sukabumi', 'Central Jakarta', 'Monday', 'today', 'Jakarta Province', 'West Java Province', 'The Meteorology', 'Climatology and Geophysics Agency', 'BMKG', 'Jakarta', 'West Java Province', 'Wednesday, September 30', 'Sukabumi District', 'West Java Province', 'three', 'Twenty', 'Sukabumi', 'At least 34', 'Central Jakarta', 'Tanah Abang', 'Benhil', 'Petamburan', 'Karet Tengsin', 'Ciliwung River', 'Kartini', 'Pasar Baru', 'the Central Jakarta City Government', 'At least 210', 'Sukabumi', 'Aqua Golden Mississippi', 'Bogor', 'West Java', 'several days', 'The Ciliwung River', 'Kebon Pala', 'the Cianten River', 'the Cibunian Village', 'Pamijahan District', 'Tropical Storm Isaias', 'millions', 'the United States', 'up to', '70 mph', 'New York', 'up to 50 mph', 'Boston', 'Vietnam', 'Tropical Storm Sinlaku', 'Over 2,800', 'seven', 'eight', 'At least 19', 'two', 'Up to 87', 'At least 49', '375', 'Dam Doi', 'Tran Van Thoi', 'At least 12', '88', 'Can Tho City', 'Approximately 930', 'Hai Phong City', 'One', 'Tu Son', 'Kim Boi District', 'Kien Giang', 'At least three', 'four', 'Up to 653', '175', '446', '32', 'At least 116', 'Kien Luong District', 'Lam Dong', 'One', 'Da Lat', 'Two', 'one', 'Bat Xat District', 'Up to 16,200', 'Approximately 16', 'Quy Chau District', 'One', 'at least 271', 'My Tu, Soc Trang City', 'Nga Nam', 'One', '300', '23', 'At least 20', 'April 21', 'Ningbo', 'This week', 'Ningbo', 'Ningbo', 'Beilun', '4', '0.5 day', 'April 15', 'the Port of Cai Mep', '1 day', 'the past week', 'the East Sea', 'approximately 140 miles', 'Busan', 'South Korea', 'One', 'one', 'Jangmi', 'the Gyeongnam Region', 'South Korea', 'Up to 315', 'one', 'Rainfall', 'Okinawa', 'Okinawa', 'Japan', 'COVID-19', 'China', '86,267', '4,634', 'At least 81,081', 'at least nine', '186', 'more than 8,000', 'Shanghai', 'Tuesday, November 10', 'More than 77,000', 'Tianjin', 'Monday, November 9', 'February 28', 'the Ports of Halifax', 'Montreal', 'Eastern Canada', 'three-week-long', 'several days', 'June 17', 'the Port of Chittagong', 'up to 6 1/2 days', 'September 11', 'the Port of Durban', '2 days', '6 days', '14 days', 'the Durban Point Terminal', 'July 13', 'Port Durban’s', 'Durban Point', '12 days', 'COVID-19', 'Massachusetts', 'COVID-19 Numbers', 'Approximately 172,727', '10,163', 'More than 6,767,987', '105', 'California', 'Massachusetts', 'California', '14 days', 'Reopening Details', 'Baker', 'COVID-19', '10:00 PM', '5:00 AM', 'Friday, November 6', '9:30 PM', 'ten', '25', '9:30 PM', 'Baker', 'October 5', 'Step Two', 'Massachusetts', 'Two', '50 percent', '250', '50 percent', '50 percent', 'July 6', 'One', '40 percent', '50 percent', 'ten', '40 percent', '14 feet', 'six feet', 'up to 50', 'Monday, September 28', 'six', 'ten', 'six feet', 'Boston', 'Charlie Baker', 'four', 'Start', 'Cautious', 'Vigilant', '14 days', 'COVID-19', 'up to US$ 500', 'Hawaii', 'Maine', 'New Hampshire', 'New York', 'Vermont', 'Washington', 'the District of Columbia', 'Rhode Island', 'COVID-19', 'only 16', 'Massachusetts', '105', 'last week', '16', 'Brockton', 'Chelsea', 'Everett', 'Fall River', 'Fitchburg', 'Lawrence', 'Lowell', 'Lynn', 'Methuen', 'New Bedford', 'Norfolk', 'Revere', 'Seekonk', 'Somerset', 'Springfield', 'Westport', 'CDC', 'COVID-19', 'New York', 'COVID-19 Numbers', 'At least 529,036', '33,694', '62', 'more than 15,664,814', 'New York', 'SUNY', 'the spring', 'February 1', 'January 22', 'a week', 'Spring', 'the school year', 'Reopening Details', 'Andrew Cuomo', 'three', \"New York's\", 'The Cluster Action Initiative', 'Brooklyn', 'Queens', 'Binghamton', 'Rockland County', 'Orange County', 'Nassau County', 'three', 'Yellow', 'Wednesday, October 7', 'no later than Friday, October 9', '14 days', 'De Blasio', '85', 'certain days', 'New York City', 'September 30', '25 percent', 'New York', '50 percent', 'Friday, November 6', 'New York', 'at least two weeks', 'Phase Two', 'the Staten Island Ferry Terminal', 'Staten Island', 'Cuomo', 'the NYS Department of Health', 'COVID-19 Vaccination Administration Program', 'COVID-19', 'New York', 'Andrew Cuomo', 'January 1, 2021', 'Andrew Cuomo', 'three days', 'Andrew Cuomo', '14-day', 'MTA', 'New York City', 'between 1:00 AM to 5:00 AM each morning', 'Wednesday, May 6', 'Essential Connector', 'Trains', 'LIRR', 'every night', 'New York', '14 days', 'October 20', 'Alaska', 'Alabama', 'Arkansas', 'Colorado', 'Delaware', 'Florida', 'Georgia', 'Guam', 'Iowa', 'Idaho', 'Illinois', 'Indiana', 'Kansas', 'Kentucky', 'Louisiana', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Mexico', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Puerto Rico', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Virginia', 'West Virginia', 'Wyoming', 'Wisconsin', 'New York City', 'New York City', 'Bill De Blasio', 'COVID-19', 'Bill de Blasio', 'December 31', 'Macy', 'Thanksgiving Day Parade', 'the Times Square New Year’s Eve', 'CDC', 'Friday', 'August 21', 'the Maritime Employers Association', 'AEM', '12-day', 'More than 1,100', 'Monday', 'August 10', 'the Port of Montreal', 'the Port of Halifax', 'Friday', 'August 6', 'New Delhi', 'Southeast Asia', 'Chinese', 'India', 'Indian', 'Asian', 'India', 'Malaysia', 'Thailand', 'Vietnam', 'Singapore', 'India', 'India', 'South Korea', 'India', '100 percent', 'China', 'Hong Kong', 'Macau', 'recent months', 'August 7', 'the Port of Ningbo', 'the previous week', 'Ningbo Beilun Container', '3: 4 days', 'Ningbo Beilun Terminal Phase 2', '2.5 days', 'Ningbo Meishan Terminal', '2 days', 'Ningbo Beilun Container', '4', '2 days', '28', '30', 'Typhoon MAYSAK-20', '222 km', 'Baengnyeongdo', 'China', 'Dem', 'Korea', 'Honshu', 'Japan', 'Jejudo', 'Korea', 'Korean', 'DMZ', 'north),Korean DMZ', 'Nansei', 'Russia', 'Ulleungdo', 'Typhoon Maysak', 'Busan', 'South Gyeongsang', 'September 3', '1', 'Gangwon province', 'the Sea of Japan', 'East Sea', 'the coming hours', 'The Central Disaster and Safety Countermeasures Headquarters', 'three', 'Bertha', 'approximately 15 miles', 'Charleston', 'South Carolina', 'South Carolina', 'North Carolina', 'Virginia', 'Two to four inches', 'up to eight inches', 'Charleston', 'South Carolina', 'Charlotte', 'North Carolina', '4.9', '17 miles', 'Darwin', 'California', 'Tropical Storm Fay', '33 miles', 'Ocean City', 'Maryland', '12 miles per hour', 'Cape May', 'Atlantic County', 'New Jersey', 'this afternoon', '60 miles per hour', 'early Saturday', 'Tropical Storm Warning', 'Fenwick Island', 'Delaware', 'Watch Hill', 'Rhode Island', 'Long Island', 'Long Island Sound', 'New York', 'the Southern Delaware Sound', '36 hours', 'The United States', '6.3', '55', 'Davao', 'Philippines', '5.0', 'Santos', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'Italian', '49', 'German', 'Louise Michel', 'French', 'Avel Gwalarn', 'Suroit', 'approximately 72 miles', 'Valletta', 'Malta', 'approximately one mile per hour', 'An estimated 219', '10', '33', 'at least one', 'The U.S. Geological Survey', 'European-Mediterranean Seismological Centre', '6.8', '97 miles', 'Bengkulu', 'Indonesia', 'USGS', '6.9', 'less than ten minutes', 'One', 'Sungai Gerong Village', 'Lebong Regency', 'Bengkulu Province', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'May 8', 'Port of Ningbo', 'the coming hours', 'May 8', 'afternoon', 'next day', 'May 8', 'evening', 'May 5', 'early morning', 'evening', 'Arabic-language', 'January 8', 'Alexandria Port Authority', 'Alexandria Port', '15:30', 'January 6', 'January 8', 'Arabic-language', 'January 8', 'Alexandria Port Authority', 'Dekheila Port', '15:30', 'January 6', 'January 8', 'The Australian Foreign Relations', 'Territory Arrangements', '2020', '3 September', 'Australian', 'Australian', 'Scott Morrison', '27 August', 'Australian', 'Marise Payne', 'Senate', '14 May 2020', 'Canberra', 'Australia', 'Sam Mooy/Getty', 'Australia', '2019', 'Victorian', 'Chinese', 'Victoria', 'China', 'Chinese', 'Chinese', 'Australian', 'recent years', 'Australia', '25 January 2018', 'Australian', 'Australian', 'three months', 'June', 'Australian', 'China', 'Australia', '8 June 2020', 'Australia', 'Chinese', 'Australia', 'China', 'April', 'Australian', '2019', 'COVID-19', 'China', 'China', '80%', 'Australian', 'Australian', 'May', 'Australia', 'China', '15 May 2020', 'Australia', 'Chinese', 'August', 'Chinese', 'Australian', 'China', 'Labor Party', 'Labor', 'The Labor Party', 'China', 'China', 'Belt and Road Initiative', '2017', '30 August', 'Anthony Albanese', '2015', 'Darwin', 'Chinese', 'Labor', '5 November 2020', 'January 2021.Indicators', 'Australian', 'the Foreign Relations Bill', 'two', 'Chinese', 'Australian', 'China', 'Australian', 'Australia', 'China', '2020', 'IHS Markit Inc.', 'June 24', 'Hong Kong', 'the Lok Ma Chau', 'Huanggang', 'June 29', 'COVID-19', 'February 8', 'Hong Kong International Airport', 'Hong Kong', 'Shenzhen Bay Port', 'September 25', 'around 18 hours', 'Port Klang', 'Westport Terminal', 'the end of September', 'February 6', 'Xiamen Songyu Container Terminal', 'Port of Xiamen', '12 hours', 'the previous day', 'June 2', 'DP World Australia', 'Sydney', '40-48 hours', '56-65 hours', 'June 3', 'June 2-4', 'January 23', '12 hours', 'the Shanghai Guandong Terminal', 'January 27', 'July 3', '1 day', 'Ningbo', 'Beilun Container Terminal', '2 days', 'the beginning of the week', 'August 7', 'the Port of Yantian', 'around 12 hours', 'August 9', 'August 25', 'Cheniere Energy Inc', 'US', 'Trail', 'Sabine Pass', 'Hurricane Laura', 'August 25', 'Sabine Pass LNG', 'Louisiana', 'Sabine Pass', 'LNG', 'the U.S. Cheniere Energy, Inc.', 'Houston', 'Texas', 'Metrowater', 'Chennai', 'Friday, July 10', 'Metrowater', 'July 1', 'the Federation of India Export Organization', 'Chinese', 'Hong Kong Customs', 'India', 'Organization', 'India', 'Ministry of Commerce', 'Chinese', 'India', 'Hong Kong', 'China', 'FedEx', 'the next 10 days', 'June 24', 'the Manila North Container Terminal', 'the Manila South Terminal', '68 per cent', '36 per cent', 'Manila', 'Manila South Terminals', 'the Confederation of Truckers Association of the Philippines', 'January 13', 'CTAP', '14,000', 'Navotas City', 'the Philippine Ports Authority', 'Manila', 'one', 'Islan Puting Bato', 'Manila', 'February 14', 'the Port of Qingdao', 'February 13', '06:00', 'February 14', 'February 12', 'February 13', 'February 15', 'today, September 14', 'First Transit Inc.', 'the District of Columbia', 'Virginia', 'March 23', 'the Port of Santos', 'Brazil', 'June 19', 'the International Longshoremen and Warehouse Union', '8 hours', 'June 19', '29', 'the West Coast', 'Los Angeles', 'Long Beach', 'San Diego', 'Bellingham', 'Seattle', 'Tacoma', 'first', 'the day', 'the Juneteenth holiday', 'George Floyd', \"the International Longshoremen's Association (ILA\", 'the East Coast', 'The Foreign and Commonwealth Office', 'COVID-19', 'Uzbekistan', 'Uzbek', 'British', 'China', 'South Korea', 'Iran', 'Italy', 'Afghanistan', 'Japan', 'up to 14 days', 'British', 'Uzbekistan', 'China', 'South Korea', 'Iran', 'Italy', 'Afghanistan', 'Japan', 'France', 'USA', 'Germany', 'Singapore', 'Spain', 'Hong Kong', 'Macau', 'Taiwan', 'last 14 days', 'up to 14 days', 'British', 'Thailand', 'Azerbaijan', 'UK', 'UAE', '14 days', 'Uzbek', '11 Million', 'UZS', 'up to three years', 'Bahamas', 'Hurricane Isaias', 'Grand Bahama', 'Hurricane Isaias', 'Late in the evening', 'Saturday, August 1', 'Bahamas', 'Grand Bahama', 'Hurricane Isaias', 'Communities', 'McLean', 'Lucayan Glen', 'Forest Green', 'Lucayan Estates', 'Williams Town', 'Russell Town', \"Pinder's Point\", 'Deadman', 'Reef, Bootle Bay', 'Holmes Rock', 'West End', 'Freeport Port', 'Grand Bahama Airport', 'Eight Mile Rock', 'Eight Mile Rock', 'Freeport\\n- Christ', 'The King Anglican Church Hall', 'Freeport\\n- Shiloh', 'Seventh-Day', 'Freeport\\n- Calvary Temple Church', 'Freeport\\n- Central Church of God Hall, Freeport', 'Samudra Sakti', 'IMO 9238258', 'approximately 16:00 UTC time', 'May 11', 'Batam Anchorage', 'May 12', 'Shahraz', 'Shahraz', 'Malaysia', 'Port Klang', 'Shanghai', 'the Bayah Port', 'Belawan', 'Indonesia', 'Jalan', 'Haji Saman', 'Jalan Laiman Diki', 'four', 'April 3', '20-01', 'the Port of Manila', 'Luzon', 'SBITC', 'Importers / Consignees', 'seven (7) days', 'five', '5) days', '30 days', 'the next 5 days', 'March 4', 'Umicore', 'Hoboken', 'Antwerp', 'the evening of March 2', 'February 10', '12-24 hours', 'Beilun', '2', 'Ningbo', 'Beilun', 'Meishan', 'London Euston', 'Milton Keynes Central', '20:00', 'Avanti West Coast', 'London Northwestern Railway', 'London Overground', 'Southern', 'The U.S. Geological Survey', '4.8', 'one mile', 'Los Angeles', 'California', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'Mundra Port', 'April 11', '12', 'Operations', 'April 13', 'April 14', 'JNPT', 'Mundra Ports', 'Jebel Ali', 'Salalah', 'Colombo', 'Negeri Sembilan', 'Chegar Perah', 'Port Dickson', 'Kampung Jimah Lama', 'Kampung Sega Hilir', 'Ladang Tanah Merah', 'Kampung Bemban', 'Sendayan', 'Kampung Sega Rantau', 'Kampung Janging', 'Lukut', '200', '259', 'Amtrak', 'New York - Penn Station', 'NYP', 'New Haven', 'CT', 'NHV', 'February 8', 'Norfolk', 'Croxton', 'Jersey City', 'NJ', 'Ports', 'New York', 'Bound Brook', 'NJ', 'February 6', '24 - 48 hours', 'August 18', '204', '202', '07:45', 'this morning', 'DCT Pier 2', '22:10', '22:30', 'August 17', 'Pier 1', '22:40', 'August 17', 'DCT Pier 1', 'the Port of Durban', '12:30', 'September 15', 'Pier 1', '11:15', 'DCT Pier 2', '04:30 to 06:30', 'September 15', 'July 15', 'DCT Pier 2', 'the Port of Durban', 'South Africa', '14:40', 'July 15', 'May 21', 'the Port of Chittagong', 'Tropical Cyclone Amphan', 'Bangladesh', 'May 20', 'the Port of Chittagong', 'August 31', 'the Pakistan Army', 'today', 'the Karachi Port Trust', 'last week', 'August 26', 'August 31', 'Karachi', 'at least 63', 'August 27', 'the Port of Busan', 'Typhoon Bavi', '18:00', 'August 26', 'July 26', 'the Port of Houston', '40-hour', \"the Montreal Gateway Terminals Partnership's Racine\", 'Cast', '3:00 PM', 'Thursday, July 2', '6:59 AM', 'Saturday, July 4', 'the Canadian Union of Public Employees', 'the Port of Montreal', '7:00 AM', 'Sunday, August 23', 'February 14', 'Port of Ningbo', 'February 13', 'February 15', '17', 'February 11', 'Five', '24-hour', 'today', 'the Port of Piraeus', 'Ships', 'May 5', 'the Port of Qingdao', 'May 3', 'afternoon', 'May 2', 'May 6', 'July 23', 'the Port of Qingdao', 'July 23', 'July 24', 'July 8', 'the Port of Qingdao', '05:50 - 10:30', 'July 7', 'July 8', 'July 13 - 14', 'July 20', 'the Port of San Antonio', 'Chile', 'July 18', 'morning', 'July 19', 'afternoon', 'between July 9 - 12', 'Jatoba', 'the Port of Santos', 'COVID-19', 'Barbara', 'August 2', 'the Colombo Port', 'July 31', 'Mahinda Rajapaksa', 'August 3', 'July 22', 'the Sri Lanka Ports Authority', 'the East Container Terminal', 'ECT', 'the Colombo Port', 'ECT', 'ECT', 'SLPA', 'May 6', 'the Maritime Office', 'Gdynia', 'Wednesday', '20 tonnes', 'May 4', 'Gdynia', 'Gdansk', 'Leba', 'about 50', 'Gdynia', 'April 30', 'Port of Gdynia', 'the Baltic Sea', 'March 20', 'the Port of Qingdao', '11:00 - 15:40', 'March 19', '00:01', '06:30', 'March 19', 'the coming hours', 'March 27', 'the Port of Qingdao', 'March 27', '20:10', 'March 26', '18:00', '20:00', 'March 26', '05:40', 'March 27', 'Crewe', 'Liverpool Lime Street', 'the day', 'Avanti West Coast', 'London Northwestern Railway', 'Polish', 'Pomeranian Voivodeship', '13:00', 'Thursday 27 February', '75 kilometres per hour', 'Gdansk', 'February 17', 'Shanghai Yangshan Port', 'February 17', 'February 15', 'afternoon', 'February 16', 'evening', 'the Shanghai Guandong Terminal', '1.5 days', 'the coming 3 days', 'the Shanghai East Container Terminal', '1 day', 'the next 3 days', '17:00', 'February 17', 'March 18', 'Port of Genoa', 'Italy', '80', 'COVID-19', 'Sealand', 'Maersk', 'the SECH Terminal', 'the coming days', 'more than 17,813', 'Southern California', 'the California Independent System Operator', 'Angeles County', 'Koreatown', 'Highland Park', 'Mid Wilshire', 'Reseda', 'Harvard Heights', 'Green Meadows', '15,425', 'Diego County', 'Pacific Beach', 'La Jolla/ La Jolla Shores', 'Soledad Mountain', '2,388', 'Greg Abbott', '32', 'Hurricane Hanna', 'Texas', 'Donald Trump', 'the Federal Emergency Management Agency', 'FEMA', 'Texas', 'Texas', 'Bee', 'Bexar', 'Brazoria', 'Brooks', 'Calhoun', 'Cameron', 'Dimmit', 'Duval', 'Fort Bend', 'Harris', 'Hidalgo', 'Jackson', 'Jim Hogg', 'Jim Wells', 'Kenedy', 'Kleburg', 'La Salle', 'Live Oak', 'Matagorda', 'McMullen, Nueces', 'San Patricio', 'Starr', 'Victoria', 'Webb', 'Wharton', 'Zapata Event', 'May 8', 'between May 8', 'May 9', 'January 9', '13:15', 'January 9', 'Pier 2', '204', '11:30', '203', '202', '108', 'September 10', 'Durban', 'Sep 12', 'March 17', 'the Port of Freeport', '00:45', 'several days', 'approximately 4 days ago', 'the Port of Freeport', '09:30', 'March 4', 'March 3 and overnight', 'The U.S. Coast Guard', 'Port Arthur', 'Beaumont', 'Texas', 'Houston', 'Galveston', 'Freeport', 'Texas City', 'Hurricane Laura', 'Hollywood', 'Los Angeles', 'Kentucky', 'Breonna Taylor', '6000', 'Santa Monica Boulevard', 'At least two', 'March 24', 'Port of Busan', 'Hanjjin New Port', 'the New Port International Terminal', '0.5 day', 'the next 3 days', 'Vietnam', 'Tropical Storm Sinlaku', 'Hai Phong', 'Quang Ninh', 'Quang Tri', 'Kien Giang Province', 'Vietnam', 'April 14', 'the Shanghai East Container Terminal', '1 day', 'the next 3 days', 'September 17', 'the Xiamen Songyu Container Terminal', 'the Port of Xiamen', 'China', '12 hours', 'September 17', 'January 13', 'the Port of Chittagong', 'Bangladesh', '2-4 days', 'February 19', 'the Port of Felixstowe', '5 days', '3 days', 'the past week', 'January 28', '1.5 days', 'the Busan New Container Terminal', 'the next few days', 'the Pusan Hanjin New Port Terminal', 'around 12 hours', 'January 28', 'the coming 3 days', 'January 9', 'the Shanghai Hudong Container Terminal', 'up to 36 hours', '24 hours', 'January 11', 'August 4', 'the Maritime Union of Australia', 'the DP World Australia', 'DPWA', 'Melbourne', 'the two hours', 'July 21', '05:00, 13:00', '21:00', 'August 8', '2-hour', '04:00, 12:00', '14:00 daily', 'these hours', 'Asuka II', 'Yokohama Port', 'Texas', 'Galveston', 'Texas', 'Louisiana', 'four to eight inches', '20 inches', 'Houston', '14 inches', 'November 23', 'the Yantian International Container Terminal', '0.5 day', '6,400', 'COVID-19', 'Malta', '66', '4,397', '15', 'Malta', '15', 'only eight', 'Italy', 'Greece', 'Malta', 'COVID-19', 'Britain', 'Norway', 'Malta', 'July 9', '200', 'July 9', 'Saint-Malo', 'Lorient', '14:00', 'July 10', 'the Saint-Malo', 'January 23', 'between 1-3 days', 'the Port of Ningbo', 'Ningbo Beilun Container', '4', '1.5 days', 'Ningbo Beilun Container', '3', '1 day', 'Ningbo Meishan Container Terminal', '3 days', 'Ningbo Beilun Container', '2', '1 day', 'January 27', 'one month', 'the Port of Montreal', 'August', 'September of this year', 'Canada', 'the Port of Montreal', '7.2 days', 'the month of September', '11.2 days', 'August', 'Toronto', 'June 22', 'Shanghai Port’s', '12-36 hours', 'Shanghai', '36 hours', 'Shanghai', '12 hours', 'June 24', 'January 31', 'Port of Ningbo', '0.5 - 1.5 days', 'Beilun Container Terminal Phase 4', '0.5 days', 'the coming few days', 'about 1 day', 'the coming 3 days', 'Meishan Container Terminal', '1 - 1.5 days', '3 days', 'April 20', 'afternoon', 'April 22', 'February 27', 'the Port of Durban', 'South Africa', 'DCT Pier 2', 'at least 22:00', 'February 27', 'April 22', 'the past days', 'the Manila International Container Terminal', 'the Bureau of Customs', 'the Philippine Ports Authority', 'the Port Condition', 'Recovery for the Port of Freeport', 'Tropical Storm Beta', 'the US Coast Guard', 'Port Condition Recovery for the Port of Freeport', 'September 22', 'April 14', 'MSICT', 'NBSCT - Phase 3', 'Ningbo Port', 'late Monday night', 'the Matagorda Peninsula', 'about 32km', 'Bay City', '45mph', 'four to six inches', 'Texas', 'approximately 3mph', 'National Hurricane Center', 'Houston', 'late Tuesday', 'Wednesday', 'the Texas Gulf Coast', 'the Gulf Livestock 1', 'Panamanian', 'the East China Sea', 'Amami', 'Oshima', 'three', '43', 'nearly 6,000', 'New Zealand', 'Tangshan', 'China', 'The Japanese Coast Guard', '40', 'Saturday', 'Typhoon Haishen', 'October 14', 'the Port of Felixstowe', 'British', 'the Port of Felixstowe', 'UK', 'Hutchison Ports', 'recent weeks', 'Asian', 'October 1', 'Deutsche Post', 'Verdi', 'Germany', 'Friday, September 18', 'Nearly 140,000', 'Deutsche Post', 'two', '2022', 'the past two weeks', '22,000', 'more than 300', 'Germany', 'six days', 'Berlin', 'Brandenburg', 'Baden-Wurttemberg', 'Bavaria', 'Hamburg', 'Hessen', 'Lower Saxony', 'Bremen', 'North Rhine-Westphalia', 'Rhineland-Palatinate', 'Saarland', 'Saxony', 'Saxony-Anhalt', 'Thuringia', 'Schleswig-Holstein', 'Mecklenburg-Western Pomerania', 'Long Beach', 'Biloxi', 'Harrison County', 'Tropical Storm Marco', 'Biloxi', 'Long Beach', 'Long Beach Harbor', 'Gulfport', 'February 14', 'the Port of Shanghai', 'Guandong', 'Waigaoqiao', 'USD 1000', 'February 7', 'Guandong', 'February 14', 'East Container Terminal', 'February 13', 'between February 15', '16', 'Houston', 'Hurricane Laura', 'first', '9:45 AM', 'this morning', 'February 12', 'Houston', 'Houston Port', '12:00', '49', '12', 'the Houston Ship Channel', '13:30', 'September 23', 'Tropical Storm', 'Los Angeles Police Department Harbor Station', 'John S Gibson Blvd', 'I-110', 'one', 'One', '9190731', 'the Port of New York', 'New Jersey', 'June 10', 'North Atlantic', 'Newark', 'United States', 'one', 'June 4', 'Algeciras', 'Spain', 'Newark', 'June 5', 'July 1', 'the Port of Busan', 'Busan New Container Terminal', '12 hours', 'June 29 and 30', 'Phil Murphy', 'June 9', 'Two', 'June 15', '10', '25', 'Phil Murphy', 'Murphy', '14 days', '50 percent', 'Murphy', 'New Jersey', 'COVID-19', 'healthcare', 'the Singapore’s Ministry of Health', 'March 22', 'COVID-19', '23:59', 'March 23', 'Singapore', 'Singapore', 'Singapore', 'Singapore', 'Singapore', 'Malaysians', 'Singapore', 'Singapore', 'Malaysia', 'Singapore', 'August 11', 'the Maritime Union of Australia', 'the DP World Australia', 'DPWA', '24 hours', 'August 13', 'August 17', 'August 17-21', 'one-hour', 'three', 'January 9', 'the MPET Terminal', 'the Port of Antwerp', 'Belgium', '500 meters', 'the MPET Terminal', 'the Port of Antwerp', 'quay 1742', 'the MPET Terminal', 'January 8', 'January 9', 'MPET', 'PSA', 'TIL', 'Europe', 'Germany', 'Hamburg', 'Pinneberg', 'this evening', 'July 1', 'the Port of San Antonio', 'Chile', 'June 30', 'DP World Southampton', 'January 15', 'the previous day', 'September 9', 'the Port of Incheon', 'September 8', 'September 6', 'Typhoon Haishen', 'September 7', '21:00', 'April 29', '10', 'ten', 'the Port of Bremen', 'the early morning hours', 'April 28', 'more than', '35 kilometers', 'Louis-Krages-Strasse', 'one', 'September 7', 'Ningbo', 'September 7', 'Typhoon Haishen', '24 hours', 'early September 6', 'September 7', 'the Port of Shanghai', 'September 7', 'Typhoon Haishen', '24 hours', 'early September 6', 'February 12', 'the Port of Rotterdam', 'early February 12', 'Storm Ciara', 'New York', 'two', 'Western Australia', 'the weekend of May 23', 'this week', 'between 50 and 55 miles', '80 miles per hour', 'the evening', 'Monday', 'May 25', 'Geraldton', 'Waggrakine', 'the Victoria Park', 'Bedford', 'Perth', 'Around 65,000', 'Western Power', 'Roughly 13,000', 'Western Power', 'Kalgoorlie', 'Western Australia', 'Port Beach', 'Busselton', 'September 21', 'Union of Australia', 'Port of Botany', 'Sydney', 'the Port of Melbourne', 'September 14', 'the Port of Botany', 'July 8', 'Pier 2', 'the Port of Durban', '84 km per hour', '204', '203', '14:00', 'July 8', '108', 'July 6 and 7', '23', 'Six', 'New South Wales', 'Victoria', 'Saturday', '4 January', 'Australian', 'Scott Morrison', '3,000', '20', 'four', 'Sydney', '47 degrees', 'Saturday', '4 January', 'March 13', 'the Voltri Terminal Europa', 'the Port of Genoa', 'March 11', '12', 'COVID-19', 'more than 20', 'VTE', 'COVID-19', 'June 27', 'the Port of Cai Mep', '1 day', 'the previous week', 'June 27', 'the Port of Laem Chabang', '1 day', 'the previous week', 'June 27', 'the Port of Karachi', '1.5 days', 'the previous week', 'June 27', 'the Port of Felixstowe', '12 hours', 'the previous week', 'June 27', 'the Port of Singapore', '12 hours', 'the previous week', 'June 27', 'the Port of Jakarta', '2 days', 'the previous week', 'June 27', 'the Port of Santos', '2 days', 'the previous week', 'February 3', 'Busan', 'around 12 hours', '36 hours', 'February 4', 'the Port of Montreal', 'CUPE', 'ILA', 'September 7', 'Toronto', 'Montreal Gateway Terminal', 'MGT', 'Western Canadian', 'September 13', '11', '17', 'Hurricane SALLY-20', '166 km', 'September 18', 'the U.S. National Hurricane Center', 'NHC', 'post-Tropical Depression Sally', 'Carolinas', 'Virginia', 'Sally', 'tonight', 'Upstate South Carolina', 'North Carolina', 'southeast Virginia', 'Sporadic', 'Bushwick', 'July 1', 'Brooklyn', 'COVID-19', 'Cuomo', 'the end of the month', 'the evening of', 'Monday, June 29', 'the Brooklyn Bridge', 'Manhattan', 'Saturday, June 27', 'Brooklyn Borough Hall', 'Court St', 'Remsen St', '12:00 PM', 'New York City Hall', '2:00 PM', \"The People's Budget Block Party\", 'Prospect Park', 'Parkside Ave', 'Ocean Ave', '3:00 pm EST', 'June 20, Juneteenth', 'Brooklyn', 'Prospect Park', 'Brooklyn', '341', 'Rochester Ave', '6 Metro', 'Grand Army Plaza', 'Shirley Chisholm Park', 'Mcarren Park', 'Washington', 'Eastern Pkwy', 'Bedford Ave', 'Grand Prospect Hall', 'Fort Greene Park', 'Queens', 'Cambria Playground', 'St. Rockway Beach', 'Cross Island Pkwy/Clintonville St Overpass', 'Roosevelt Ave', '46th', 'Queens Blvd', 'Dutch', 'Kills Green', '5.1', 'six miles', 'Sparta', 'North Carolina', 'Approximately 100', 'Virginia', 'South Carolina', 'Tennessee', 'At least five', 'Alleghany County', 'Blue Ridge Energy', 'Sparta', 'Wes Brinegar', 'Alleghany County', 'Acciona', 'Nissan', 'Barcelona', '05:00', 'October 5', 'August 24', '500', 'December 31, 2021', 'July 13', 'the Government of Honduras', 'San Pedro Sula', 'Olancho', 'Choluteca', 'Atlántida', 'Comayagua', 'Santa Bárbara', 'Lempira and Colón', 'July 19', 'July 12', 'Sinager', 'September 9', 'the Port of Qingdao', '0.5-1 days', '7', '1', 'January 31', 'the Port of Shanghai', '12-24 hours', '12 hours', 'Shanghai', '12-24 hours', 'the Shanghai East Container Terminal', 'the coming three days', 'February 20', 'the Brazilian Association of Motor Drivers', 'Abrava', '18:00', 'February 19', 'Brazilian', 'February 18', 'Sindicam', '24-hour', 'the previous day', 'the Port of Santos', 'April 30', 'the coming days', 'the Port of Durban', 'May 1', 'DCT Pier 1', '1', '5', '2', 'May 3', '4', '10', 'the Houston Ship Channel', '02:55', 'February 19', '51', '1', 'March 4', 'the Houston Ship Channel', '16:22', 'March 4', 'July 21', '48-56 hours', 'the Port of Sydney', 'July 14 to July 16', 'around July 26', 'July 31', 'Nissan', 'Barcelona', 'December 2021', 'December 2020', 'May 28', 'January 27', 'Pier 2, Port of Durban', 'Januar 27', 'Landside and Rail', 'Pier 1', '06:00', 'January 27', 'June 19', 'the Port of Genoa', 'A10', 'A26', 'A12', 'A7', 'the coming days', 'October 1', 'the Port of Colombo', '20-24 hours', 'this week', 'April 1', 'the Port of Rotterdam', '12 hours', 'the previous week', '1 day', 'April 28', 'South African', 'between 3-5 days', 'Durban', '1-2 days', 'the Port of Coega/Elizabeth', '5 days', 'the Port of Cape Town', 'March 30', 'the Port of Shanghai', '1 day', 'Shanghai Guandong Terminal', 'Shanghai East Container Terminal', 'Nissan', 'the Zona Franca', 'Montcada i Reixac', 'Barcelona', 'the Zona Franca', 'May 4', 'Quebec', 'approximately 72 miles', 'Saguenay', 'Quebec City', 'Trois Rivieres', 'Rue Lauzon', 'Trois Rivieres', 'United States', 'at least nine', 'Two', 'up to 20', 'Windsor, North Carolina', 'Three', 'Connecticut', 'Maryland', 'New York', 'One', 'Upper Saucon Township', 'Pennsylvania', 'at least two', 'Delaware', 'at least one', 'North Carolina’s', 'Volusia County', 'Florida', 'the United States', 'Caribbean', 'Puerto Rico', 'the Dominican Republic', 'Two', 'the Dominican Republic', 'Puerto Plata Province', 'El Seibo Province', 'Typhoon Mekkhala', 'Jiuzhen', 'early Tuesday', 'the Saffir-Simpson', 'approximately 36 miles', 'Xiamen', 'China', 'Patrick Terminals', 'Sydney', '18-24 hours', 'the previous 56 hours', 'June 15', 'VTS', '16 hours', 'June 21-22', 'Sydney', 'Jag Leela', 'the Belawan Port', 'At least seven', '22', 'approximately 650 feet', 'January 15', 'COSCO Pacific', 'the Port of Colombo', 'Sri Lanka', 'the Port of JNPT', 'Mumbai', 'India', 'January 4', 'Port Klang', 'Malaysia', 'India', 'Nhava', '11:00', 'August 27', 'Houston', 'Galveston', 'Port Condition Recovery', 'Hurricane Laura', 'July 28', 'the Port of Tanjung Pelepas', '4-hour', '3-hour', 'September 29', 'the Port of Vancouver', '7-8 days', '15-18 days', 'Port', 'Global Container Terminals', '100 percent', 'month-long', 'Montreal', 'Montreal', 'Halifax', 'Canada', 'March 12', '08:30', 'March 12', 'the Houston Ship Channel', '36', '5', 'September 9', 'the Port of Gwangyang', 'September 8', 'September 6', 'Typhoon Haishen', 'September 7', '21:00', 'April 23', 'the Port of Los Angeles', 'about 30', 'mid-July', 'Long Beach', 'Los Angeles', 'March 23', 'the Port of Los Angeles', '80 percent', 'COVID-19', '2020', 'the previous year', 'April', 'China', 'US', 'Australia', 'Bureau of Meteorology (BoM', '17:06', 'Thursday, January 9', 'Western Australia', 'Thursday', 'Friday, January 10', 'BoM', 'Blake', 'Plateau', 'Wyndham', 'Daly River Mouth', 'Point Stuart', 'Darwin', 'the Tiwi Islands', 'Weather Warning', 'Arnhem', 'Tiwi', 'Daly', 'Darwin', 'Strikes', 'Tuesday', 'May 26', '22', 'McDonald', 'Oakland', 'at least four', 'COVID-19', 'two-week', 'hundreds', 'McDonald', 'approximately 20', 'Wednesday', 'May 20', 'COVID-19', 'McDonald', 'annual', '15', 'the Service Employees International Union', 'seven', 'the Yakima Valley', 'Washington State', 'Hundreds', 'the Columbia Reach', 'Hansen Fruit', 'Cold Storage Company', 'Roche', 'Matson Fruit Company', 'Monson Fruit Company', 'COVID-19', 'At least six', 'the weekend', 'May 16', 'Saint Louis University Hospital', 'St Louis', 'Missouri', 'Saint Mary’s', 'Reno', 'Nevada', 'the White House', 'Washington DC', 'COVID-19', 'Washington DC', 'Thousands', 'Illinois', 'the Service Employees International Union', 'May 8', 'COVID-19', 'The Service Employees International Union', 'more than 10,000', '100', 'Chicago', 'Approximately 20', 'Columbia Farms', 'West Columbia', 'South Carolina', 'May 6', 'COVID-19', 'Demonstrations', 'May 1', 'May Day', \"International Worker's Day\", 'Amazon, Whole Foods', 'Instacart', 'Walmart', 'FedEx', 'Target', 'Shipt', 'COVID-19', 'COVID-19', 'thousands', 'Hundreds', 'Amazon', 'Friday, April 24', 'the United States', 'Amazon', 'COVID-19', 'Tuesday, April 21', 'Amazon', 'Shipt', 'Tuesday, April 7', 'Friday, April 10', 'an additional $5', 'Instacart', 'the Gig Workers Collective', 'Monday, March 30', 'COVID-19', 'an additional $5', 'April 8', 'COVID-19', 'Amazon', 'Staten Island', 'NY', 'Monday, March 30', 'Monday, April 6', 'Amazon', 'COVID-19', 'Staten Island', 'COVID-19', 'two weeks', 'Amazon', 'Chicago', 'Whole Foods', 'Amazon', 'Tuesday, March 31', 'Instacart', 'Whole Foods', 'COVID-19', 'COVID-19', 'hourly', 'August 7', 'the Port of Busan', '12 hours', 'August 8', '12-24 hours', 'the Busan New Port Terminal', 'May 7', 'the Port of Lome', '2.5 days', 'the previous week', 'May 20', 'the Port of Santos', 'Brazil', '2.5 days', '2 days', 'the previous week', 'May 20', '3 days', 'the Port of Genoa,', 'Italy', 'the previous weeks', 'Laura', 'Virginia', 'Category 4', 'Laura', 'the Gulf Coast', 'at least one', 'Gueydan', 'Louisiana', 'at least two', 'Craighead', 'Forrest City', 'Arkansas', '16', 'St Patrick’s Hospital', 'Lake Charles', 'Debris', 'thousands', 'Hurricane Laura', 'hundreds of thousands', 'Louisiana', 'Texas', 'the Gulf of Mexico', 'the Gulf Coast', 'Louisiana', 'Arkansas', 'Mississippi', 'Louisiana', 'Texas', 'September 2', 'the Port of Ningbo', '24-48 hours', '24-36 hours', 'Ningbo Meishan Container Terminal', '48 hours', 'Ningbo Beilun Container', 'Phase 2', '48 hours', 'Ningbo', 'Beilun Container', '3 and 24 hours', 'Ningbo', 'Beilun Container', 'the next 3 days', 'the MV Hoegh Xiamen', '600-foot', 'Dave Rawls Blvd', 'Blount Island Blvd', '21', 'nine', 'three', 'Apri 8', 'Ineos Phenol', 'Doel', 'Antwerp', 'six-week', 'January 2020', '180', '500,000', 'year', '680,000 tonnes', 'around half', 'Europe', 'the Bharatiya Mazdoor Sangh', 'BMS', 'India', 'July 24', 'July 30', 'Andal, Bilaspur, Nagpur', 'Bengaluru', 'Gorakhpur', 'Varansai', 'Chennai', 'Jammu', 'Lucknow', 'Moradabad', 'Dadar', 'Parel', 'Mumbai', 'Pradarshan Ground', 'Jamnagar', 'Jansampark', 'Bhopal', 'Lalgarh', 'West Bengal', 'Kaylan', 'October 13', 'Phillips', '66', 'Lake Charles', 'the end of this week', 'Gulf Coast Lubricants Plant', 'Lake Charles', 'Hurricane Delta', 'August 25', 'Hurricane Laura', 'The Phillips 66 Company', 'American', 'Westchase', 'Houston', 'TX', 'September 8', 'the Port of Busan', '21:00', 'September 7', 'Typhoon Haishen', 'November 9', 'Sao Paulo', '22', '5', 'Sao Paulo', 'the Northern Subregion', 'Santos', 'Taubate', 'Campinas', 'Piracicaba', 'Sorocaba', 'Guangdong Province', 'approximately 158 miles', 'Macao', 'China', '12:00 PM', 'August 19', '52', 'Guangdong Province', 'Wednesday', 'morning', 'Tanzhou', 'Zhongshan City', '120', 'Guangxi', 'Macao', 'up to', '2,800', '17', 'Shanwei', 'Guangdong Province', 'the Qiongzhou Strait', 'May 20', 'the Port of Jakarta', 'Indonesia', '2 days', 'the previous weeks', 'late November 2020', 'Canada', 'COVID-19', 'Canada', 'COVID-19', 'Ford Motor', 'Sunday, May 10', 'Oakville Assembly', 'Oakville', 'Ontario', 'the week of May 25', 'Ford Edge', 'Lincoln', 'Nautilus', 'Cargill', 'Chambly', 'Quebec', 'Wednesday', 'May 13', 'COVID-19', 'At least 64', 'Approximately 171', 'Cargill', 'High River', 'Alberta', 'the week of May 4', 'April 20', 'COVID-19', '2,000', 'At least 821', 'Cargill', 'one', 'Coquitlam', 'British Columbia', 'COVID-19', 'Superior Poultry Processors Ltd.', 'Fraser Health', 'two', 'the Canadian Food Inspection Agency', 'the United Poultry Co Ltd.', 'Vancouver', 'Tuesday, April 21', '29', 'COVID-19', 'Quebec', 'March 25', 'Lamaque', 'Quebec', 'Quebec', 'Canada', 'Cargill', 'High River', 'Alberta', 'COVID-19', 'Canada', 'Ford', 'Canada', 'evening', 'Thursday, March 19', 'at least March 30', 'GM', 'Canada', 'Wednesday', 'at least March 30', 'Toyota', 'Canadian', 'COVID-19', 'March 23 and 24', 'May 4', 'Cameco Corporation', 'Port Hope', 'approximately four weeks', 'the Blind Refinery', 'approximately four weeks', 'Cameco', 'the Cigar Lake', 'COVID-19', 'March 23', 'Monday, April 3', 'approximately 300', 'About 35', 'March 24', 'Orano Canada Inc', 'McClean Lake', 'COVID-19', '50', 'last two weeks', 'at least four weeks', 'Cameco', 'Fiat', 'Chrysler Automobiles', 'FCA', 'Canada', 'Wednesday, March 18', 'at least the end of March', 'at least', 'COVID-19', 'Honda', 'New Tecumseth', 'March 18', 'last through March 31', 'at least', 'SSR Mining Inc.', 'Seabee', 'Saskatchewan Province', 'at least April 30', 'COVID-19', '20', 'Trevali', 'Caribou', 'New Brunswick Province', 'COVID-19', 'Longview Aviation Capital Corporation', '400', 'approximately 1,000', 'De Havilland Canada', 'Longview Aviation', 'COVID-19', 'the Irving Shipbuilding Inc Halifax Shipyard', 'Barrington Street', 'N Marginal Road', 'three weeks', 'March 19', 'COVID-19', 'at least 1,100', '1,800', 'COVID-19', 'COVID-19', 'Macao', '46', 'the end of June', 'COVID-19', 'Monday, November 9', 'Macao', 'Hong Kong', 'Taiwan', 'China', 'Macao', 'Macao', 'COVID-19', 'the last seven days', 'Macao', 'Hong Kong', 'Macao', 'Macao', 'COVID-19', 'seven days', 'Macao', 'Guangdong', 'COVID-19', 'Conde de Sao Januario Hospital', 'Wednesday, September 23', 'the Individual Visit Scheme', 'China', 'August', 'Zhuhau', 'Guangdong province', 'COVID-19', 'seven days', 'Macau', 'July 13', 'Hong Kong', 'Hong Kong', 'Macao Bridge', 'Hong Kong', 'COVID-19', 'the past 7 days', 'July 15', 'September 22', 'Saint Gobain', \"L'Arboç\", 'Tarragona', 'the Ministry of Labor', 'Bellvei', 'Seat Martorell', 'Barcelona', 'Ford', 'Valencia', 'Mercedes-Benz Vitoria', 'PSA Figueruelas', \"L'Arboc\", '99', '17', 'Typhoon HIGOS-20', '101 km/h', 'China', 'Tropical Storm Higos', '06.00', 'August 19', 'Zhuhai', 'Guangdong', 'the Guangxi Zhuang Autonomous Region', 'at least 65,000', 'China', 'the ongoing monsoon season', 'Meizhou', 'Guangdong', 'the evening of', 'August 18', 'Saturday, August 22', 'the Department for Education', 'London', 'Gavin Williamson', 'the Department for Education', 'Pearson', 'Saturday, August 29', 'Victoria Square', '1:00 PM', '1:00 PM', '1:00 PM', 'Millennium Square', '1:00 Pm', '1:00 PM', 'St. Peter’s Square', '1:00 PM Event', 'January 20', 'the Houston Ship Channel', 'January 18', '07.30', '15.30', 'the same day', 'January 13', 'May 20', 'the Port of Singapore', '1.5 days', 'the previous week', '2 days', 'October 26', 'the Port of Houston', '12-24 hours', '0-12 hours', 'October 27', 'the Port of Klang', '16 hours', 'the Westport Terminal', 'Week 45', 'September 9', 'Port of Shanghai Waigaoqiao', 'around 1.5 days', '1-1.5 days', '2-2.5 days', 'W4', '1-1.5 days', '2 days', '2.5-3 days', 'Y3', '0.5-1 day', 'Y4', '1 day', 'October 27', 'the Port of Durban', 'last week', '1 day', '0 days', 'Durban Point Terminal', '3 days', 'October 28', 'Port of Halifax', '1.7 days', 'the Fairview Cove Terminal', '7.4 days', 'South End', 'last week', '16 days', 'South End', 'German', 'Hapag-Lloyd', 'Montreal', 'Halifax', 'April 7', 'the Houston Ship Channel', '11:25 to 12:45', 'April 7', 'Monday, September 7', 'Panamanian', 'New Diamond', 'the Bay of Bengal', 'roughly 35 miles', 'Sangamon Kanda Point', 'Komari', 'Sri Lankan', 'Indian', 'coast guard', 'second', 'Sunday, September 6', 'first', 'last week', 'At least 21', '23', 'one', 'an estimated two billion barrels', 'Kuwait', 'Paradip', 'India', 'approximately 23 miles', 'Lankan', 'Reliance Industries', 'Gretchen Whitmer', 'June 1', 'June 4', 'June 8', 'Gretchen Whitmer', 'June 12', 'COVID-19', 'Traverse City', 'Upper Peninsula', 'May 25', 'six', 'the Michigan Government', '83', 'eight', 'two', 'the Upper Peninsula', 'Traverse City', 'fourth', 'six', 'third', 'Flattening', 'Genesee County, Lapper County', 'Livingston County', 'Macomb County', 'Monroe County', 'Oakland County', 'St. Clair County', 'Washtenaw County', 'Wayne County\\n\\n-', 'Grand Rapids Region', 'Clare County', 'Ionia County', 'Isabella County', 'Kent County', 'Lake County', 'Mason County', 'Mecosta County', 'Montcalm County', 'Muskegon County', 'Newaygo County', 'Oceana County', 'Ottawa County', 'Osceola County', 'Allegan County', 'Barry County', 'Berrien County', 'Branch County', 'Calhoun County', 'Cass County', 'Kalamazoo County', 'St. Joseph County', 'Van Buren County', 'Alcona County', 'Arenac County', 'Bay County', 'Gladwin County', 'Huron Countu', 'Iosco County', 'Midland County', 'Ogemaw County', 'Oscoda County', 'Saginaw County', 'Sanilac County', 'Tuscola County\\n\\n-', 'Clinton County', 'Eaton County', 'Gratiot County', 'Ingham County', 'Shiawassee County', 'Antrim County', 'Alpena County', 'Benzie County', 'Charlevoix County', 'Cheboygan County', 'Crawford County', 'Emmet County', 'Grand Traverse County', 'Kalkaska County', 'Leelanau County', 'Manistee County', 'Missaukee County', 'Montmorency County', 'Otsego County', 'Presque Isle County', 'Roscommon County', 'Wexford County\\n\\n-', 'Hillsdale County', 'Jackson County', 'Lenawee County\\n\\n-', 'Upper Peninsula', 'Alger County', 'Baraga County', 'Chippewa County', 'Delta County', 'Dickinson County', 'Gogebic County', 'Houghton County', 'Iron County', 'Keweenaw County', 'Luce County', 'Mackinac County', 'Marquette County', 'Menominee County', 'Ontonagon County', 'Schoolcraft County', 'healthcare', 'August 13', 'the Port of Qingdao', 'August 12 11:00', 'August 13', 'May 20', 'the Port of Laem Chabang', 'Thailand', '1 day', 'the previous weeks', 'June 27', 'the Jawaharlal Nehru Port', '5 days', 'the previous week', 'October 20', 'the Qingdao Qianwan Container Terminal', '12 hours', 'May 20', 'the Port of Felixstowe', 'United Kingdom', '1 day', 'August 3', 'Shanghai', '12-24 hours', 'the next three days', 'May 20', 'the Port of Karachi', 'Pakistan', '1.5 days', 'the previous week', 'Japanese', 'two', 'Yokohama', 'More than 620', 'Diamond', '3 February', 'about 3,700', 'The National Hurricane Center', 'NHC', 'Hurricane Sally', 'North Carolina', 'Southeast Virginia', 'NHC', 'Flood Watches', 'Flash Flood Watches', 'South Carolina', 'North Carolina', 'southeast Virginia', '80km', 'Columbia', 'South Carolina', '21', '23', '74 km', 'May 25', 'Australia', 'Perth (Port of Fremantle', 'May 25', 'about 62,000', 'Australia', 'May 26', 'Perth', 'July 24', 'Victoria', 'New South Wales', 'COVID-19', 'West Australian', 'Western Australia', 'five', 'July 18', 'COVID-19', 'Victoria', 'WA', 'August 1', 'worsens', 'Tuesday', 'the United States', 'Istanbul', 'Health Alert', 'US', 'Turkey', 'COVID-19', 'The Department of State', 'U.S.', 'COVID-19', 'The Centers for Disease Control and Prevention', 'CDC', 'Turkey', 'Turkey', 'the United States', 'Turkey', '14 days', 'U.S.', 'the United States', 'Country-Specific Information', 'Turkey', 'COVID-19', '• For', 'the Turkish Ministry of Health COVID-19', 'March 27', 'Turkish Airlines', 'New York JFK', 'Washington Dulles', 'Hong Kong', 'Addis Ababa', 'Moscow', 'Turkey', 'Algeria', 'Angola', 'Austria', 'Azerbaijan', 'Bangladesh', 'Belgium', 'Cameroon', 'Canada', 'Chad', 'Colombia', 'Cote', 'Czech Republic', 'Cyprus', 'Denmark', 'Djibouti', 'Dominican Republic', 'Ecuador', 'Egypt', 'Equatorial Guinea', 'Finland', 'France', 'Georgia', 'Germany', 'Guatemala', 'Hungary', 'India', 'Iran', 'Iraq', 'Ireland', 'Italy', 'Jordan', 'Kazakhstan', 'Kenya', 'Kosovo', 'Kuwait', 'Latvia', 'Lebanon', 'Mainland China', 'Mauritania', 'Moldova', 'Mongolia', 'Montenegro', 'Morocco', 'Nepal', 'Netherlands', 'Niger', 'North Macedonia', 'Norway', 'Oman', 'Panama', 'Peru', 'Philippines', 'Poland', 'Portugal', 'Saudi Arabia', 'Slovenia', 'South Korea', 'Spain', 'Sri Lanka', 'Sudan', 'Sweden', 'Switzerland', 'Taiwan', 'Tunisia', 'Ukraine', 'United Arab Emirates', 'United Kingdom', 'Uzbekistan', '• Foreign', 'Turkey', 'Greece', 'Bulgaria', 'the last 14 days', '• Turkish', 'the past 14 days', 'Turkey', 'Turkish Airlines', 'Turkish Airline', 'Turkish Airlines', 'Turkish', 'Bulgaria', 'Greece', 'Iran', 'Iraq', 'Sarp', 'Georgia', 'Dilucu', 'Greece', 'Turkey', 'Turkish Ministry of Health', 'Turkey', 'COVID-19', 'Turkish Ministry of Health', '14 days', 'March 19', 'March 16', 'the week of March 23', 'March 16', 'three weeks', 'Turkish', '184', 'Turkey', 'the Turkish Ministry of Health COVID-19 Telephone Hotline', 'Turkish', 'Arabic', '• Turkish Ministry of Health COVID-19', '• Turkish Airlines Press Releases', '• COVID-19', '•', 'CDC', 'COVID-19', '• F.A.Q.', 'Europe', '• Turkey Country Information and Travel Advisory', 'Turkey', 'COVID-19', '1,529', '37', 'one', 'the Middle East', 'North Africa', 'Turkey', 'second', 'Iran', 'Turkish', 'the age of 65', 'March 21', 'COVID-19', 'Turkey', 'August 3', 'the US Department of Customs and Border Protection', 'CBP', 'COVID-19', 'CBP', '14-days', '14-day', 'CBP', '14-days', 'Iran', 'China', 'Hong Kong', 'Macau', 'Austria', 'Belgium', 'Czech Republic', 'Denmark', 'Estonia', 'Finland', 'France', 'Germany', 'Greece', 'Hungary', 'Iceland', 'Italy', 'Latvia', 'Liechtenstein', 'Lithuania', 'Luxembourg', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Slovakia', 'Slovenia', 'Spain', 'Sweden', 'Switzerland', 'United Kingdom', 'Ireland', 'Brazil', 'August 3', 'the US Department of Customs and Border Protection', 'CBP', 'COVID-19', 'CBP', '14-days', '14-day', 'CBP', '14-days', 'Iran', 'China', 'Hong Kong', 'Macau', 'Austria', 'Belgium', 'Czech Republic', 'Denmark', 'Estonia', 'Finland', 'France', 'Germany', 'Greece', 'Hungary', 'Iceland', 'Italy', 'Latvia', 'Liechtenstein', 'Lithuania', 'Luxembourg', 'Malta', 'Netherlands', 'Norway', 'Poland', 'Portugal', 'Slovakia', 'Slovenia', 'Spain', 'Sweden', 'Switzerland', 'United Kingdom', 'Ireland', 'Brazil', 'Thursday', 'the United States', 'Manama', 'US', 'Bahrain', 'Country-Specific Information', 'March 12, 2020', 'Bahrain', '160', 'COVID-19', 'Bahrain', '24-hour', '444', 'the Bahrain Ministry of Health', 'COVID-19', 'English', 'Arabic', 'The Bahrain Foreign Ministry', 'China', 'Hong Kong', 'Iran', 'Malaysia', 'Singapore', 'Thailand', 'South Korea', 'Italy', 'Bahrain', 'Citizens', 'American', 'GCC', 'the World Health Organization (WHO', 'the Bahrain Ministry of Transportation Instagram', 'COVID-19', 'the Bahrain International Airport', 'COVID-19', 'March 12', 'GCC', 'China', 'Hong Kong', 'Thailand', 'Malaysia', 'Iran', 'South Korea', 'Singapore', 'Japan', 'Italy', 'Lebanon', 'Egypt', 'China', 'Hong Kong', 'the past 14 days', 'COVID-19', '14 days', 'Thailand', 'Malaysia', 'South Korea', 'Iran', 'Singapore', '14 days', 'March 12', 'Saudi Arabia', 'the King Fahad Causeway', 'March 9', 'Gulf Air', 'the Kingdom of Saudi Arabia', 'the U. S. Embassy', 'Riyadh', 'The Kingdom of Saudi Arabia', 'the King Fahd Causeway', 'the Health Alert', 'Wednesday', 'the US Embassy', 'Hanoi', 'Ho Chi Minh City', 'Health and Travel Alert', 'Vietnam', 'the U.S. Embassy', 'Hanoi', 'Consulate', 'Ho Chi Minh City', 'U.S.', 'Coronavirus', 'Vietnam', 'April 29', 'Vietnam', '270', 'COVID-19', 'first', '222', 'COVID-19', 'the Vietnamese Ministry of Public Security', 'Vietnam', 'Vietnamese', 'The U.S. Embassy', 'Hanoi', 'Consulate', 'Ho Chi Minh City', 'U.S.', 'U.S.', 'Vietnam', 'U.S.', 'U.S.', 'Embassy', 'Hanoi', 'Ho Chi Minh City', 'U.S.', 'all hours', 'U.S.', 'U.S.', 'Embassy', 'Hanoi', 'Ho Chi Minh City', 'U.S.', 'U.S.', 'Hanoi', 'Sapa', 'Hai Phong', 'The U.S. Consulate', 'Ho Chi Minh City', 'Danang', 'Can Tho', 'Wednesday', 'the US Embassy', 'Vietnam', 'Vietnam', 'The U.S. Embassy', 'Hanoi', 'Consulate', 'Ho Chi Minh City', 'U.S.', 'Coronavirus', 'Vietnam', 'the Vietnamese Ministry of Health', 'Vietnam', '446', 'COVID-19', 'first', '369', '77', '99 days', 'Vietnam', 'Da Nang', 'Quang Nam', 'Quang Ngai', 'Vietnamese', 'Kon Tum', 'Lam Dong', 'Quang Nam', 'Thua Thien Hue', 'COVID-19', 'COVID-19', 'Vietnam', 'Hanoi', 'Ho Chi Minh City', 'Nang', 'The U.S. Embassy', 'Hanoi', 'Consulate', 'Ho Chi Minh City', 'U.S.', 'Hanoi', 'U.S.', 'COVID-19', 'The Vietnamese Ministry of Transportation', 'U.S.', 'Embassy', 'COVID-19', 'daily', 'Tuesday', 'US', 'Donald Trump', 'Washington', 'Hong Kong', 'China', 'the White House', 'Hong Kong', 'US', 'US', 'Hong Kong', 'Hong Kong', 'China', 'Tuesday', 'Trump', 'Chinese', 'Tuesday', 'Hong Kong', 'China', 'Washington', 'Hong Kong', 'US', 'last year', 'more than 1,300', 'American', 'Washington', 'Beijing', 'COVID-19', 'South China Sea', 'Chinese', 'Wednesday', 'American', 'The United States Coordinator', 'Counterterrorism', 'Nathan Sales', 'Thursday, September 17', 'Lebanon', 'Hezbollah', 'Europe', 'European', 'first', 'Europe', 'at least 2018', 'Belgium', 'Spain', 'Switzerland', 'France', 'Greece', 'Italy', 'Spain', 'Switzerland', 'the United Kingdom', 'The French Ministry of Foreign Affairs', 'the next day', 'French', 'European', 'Hezbollah', 'European', 'Belgium', 'Italy', 'Greece', 'France', 'Spain', 'Switzerland', 'Hezbollah', 'US', 'UK', 'Germany', 'past years', 'Hezbollah', 'Europe', 'Cyprus', '2015', 'more than eight tons', 'The same year', 'four', 'London', 'approximately three tons', 'Hezbollah', '2012', 'Burgas Airport', 'Bulgaria', 'six', '32', 'Hezbollah', 'Europe', 'Europe', 'European', 'France', 'Lebanon', 'Hezbollah', 'Hezbollah', 'Germany', 'recent years', 'August 4', 'the Port of Beirut', 'Hezbollah', 'European', 'August 2', 'Virginia', 'Hurricane Isaias', 'X-Ray', '48 hours', 'August 3', 'USCG Sector NY', 'Hurricane Condition X-Ray', 'August 3', 'Tropical Storm Isaias', 'Port', 'August 4', '12:00 that day', 'September 18', '11:40', 'September 6', 'Yongdang-dong', 'Namgu', 'Busan', '17:40 that day', 'KRW 400 million', 'EUR', 'USD 340,000', 'Jalan Kem', 'Port Klang', 'the Pulau Indah Highway', 'Everstream Analytics', 'Southwark Street', 'London', 'Friday', 'February', 'the Port of Antwerp', 'Belgium', 'two', 'at least 49', 'one', 'the Port of Antwerp', 'Belgium', 'February 4', 'A13', 'J30', 'London', 'one', 'two', 'July 1', 'Willemsbrug', 'Rotterdam', 'Netherlands', 'around 12:45', 'July 1', 'three', 'September 15', 'CI2', 'WAN HAI', '513', 'Jawaharlal Nehru Port Container Terminal', 'September 22', 'Dutch', 'Willemsbrug', 'Rotterdam', 'Wednesday', 'Willemsbrug', 'January 13', 'CCX', 'WAN HAI 0511', '053W', 'Port of Hong Kong', 'Port Klang West', 'Port of Ningbo', '48-hours', 'Port Klang North', 'January 20', 'Chennai', 'Kattupalli', 'Singapore', 'Hong Kong', 'Shekou', 'Guangdong', 'Shanghai', 'Hong kong', 'Singapore', 'Port Klang West', 'Singapore', 'Port Freeport', '05:43', 'January 2', 'the Port of Le Havre', 'between 2 to 7 days', 'France', 'February 18', 'Waigaoqiao', 'several hours', 'February 17', '18', '2 days', 'the Shanghai Guandong Terminal', '1 day', 'the Shanghai East Container Terminal', 'Granville Bridge', 'Port of Jeddah', 'Port of Colombo', 'Jeddah', 'February 19', 'Port of Aqaba', 'February 22', 'Port of Sokhna', 'February 25', 'the Victoria International Container Terminal', 'VICT', 'hours', '06.00', 'January 10', 'VICT', 'seven days', 'Saturday', '06.00', 'Sunday', 'VICT', 'the Mitre Railway', 'Friday', 'August 28', 'Victoria Station', 'September 2', 'Vlake', 'Antwerp', '03:30', 'September 1', 'Bremerhaven', 'Vlake', 'Everstream Analytics', 'Vynova', 'Tessenderlo', 'Belgium', 'May 29', 'April 9', 'Ham', 'Antwerp', 'January 8', 'Waigaoqiao', 'January 8', 'May 20', 'the Qingdao Qianwan Container Terminal', 'China', '0.5 days', 'the coming 3 days', 'April 20', 'the Qingdao Qianwan Container Terminal', '0.5 days', 'the coming 3 days', 'May 20', 'the Yantian International Container Terminal', 'China', '0.5 days', '6 hours', 'May 21', 'Durban Point', 'the Port of Durban', 'South Africa', '12 days', 'April 22', 'Guangzhou', 'Oceangate Container Terminal', '12 hours', 'February 25', 'Ningbo Port', 'Ningbo Beilun Container', '4', '0.5 day', 'June 29', 'the Qingdao Qianwan Container Terminal', '12 hours', 'the coming 3 days', 'September 10', 'the Qingdao Qianwan Container Terminal', '36hours', 'the coming 3 days', 'Dec 31', 'the Shanghai Guandong Container Terminal', '2.5 days', 'March 18', 'Port of Jakarta', '1 day', 'September 10', 'the Port of Shanghai', '24 -36 hours', '24 hours', 'the Shanghai Guandong Container Terminal', '36 hours', 'the Shanghai East Container Terminal', 'the coming 3 days', 'August 4', 'DP World', 'Sydney', '2-3 days', '0.5-1 days', 'June 27', 'the Port of Genoa', '2 days', 'the previous week', '2.5 days', 'January 28', 'the Port of Chittagong', 'Bangladesh', '2-3 days', 'January 28', 'January 20', 'the Port of Chittagong', 'Bangladesh', '1-4 days', 'January 20', 'August 17', 'the Port of Long Beach', 'Los Angeles', '14 days', '72 percent', '30', '4', '3-4 days', 'Los Angeles', '88 percent', 'June 27', 'the Port of Sydney', '8 days', 'the previous week', '6 days', 'May 25', 'Qianwan', '12 hours', 'the coming 3 days', 'July 1', 'the Shanghai Hudong Container Terminal', 'up to 12 hours', 'the next 2 days', 'May 25', 'the Busan Newport International Terminal', '12 hours', 'May 26', 'May 25', 'Yantian International', '12 hours', 'May 26', 'July 23', 'the Guangzhou Oceangate Container Terminal', '12-24 hours', 'the next couple of days', 'June 2', 'the Xiamen Songyu Container Terminal', '12-24 hours', 'the coming 3 days', 'April 21', 'Maersk Euphrates', 'Sydney', 'this week', '16 and 24 hours', 'June 2', 'the Guangzhou Oceangate Container Terminal', 'around 24 hours', '12 hours', 'June 3', 'May 20', 'the Port of Durban', 'South Africa', '3 days', 'DCT Pier 1', 'February 18', 'several hours', 'February 17', '1 day', 'Meishan', 'Beilun Container Terminal', '1.5 days', 'the Yongzhou Terminal', 'May 18', 'the Qingdao Qianwan Container Terminal', '12 hours', 'the coming two days', 'Qingdao Qianwan Container Terminal', 'March 26', '0.5 days', 'the Qingdao Qianwan Container Terminal', 'the next 3 days', 'April 22', 'Busan Hanjin New Port Newport Terminal', '12 hours', 'April 14', 'the Port of Busan', '12 hours', 'April 14', 'April 14', 'the Yantian International Container Terminal', '0.5 days', 'the next 3 days', 'May 18', 'the Shanghai Guandong Container Terminal', '12 hours', 'May 19', 'the Shanghai East Container Terminal', '12-24 hours', 'May 19', 'February 12', 'the Wando Welch Terminal', 'the Port of Charleston', 'United States', '12:00', 'February 12', 'August 17', 'Wang Kee Port Operation Services Limited', 'COVID-19', 'the Port of Hong Kong', 'May 5', 'the Autopista del Sol', 'San Antonio', 'Chile', 'San Antonio', 'up to 9 hours', 'the San Antonio Logistics Community', 'one', 'The London Fire Brigade', 'Leyton', 'early Monday morning', '12', 'Argall Avenue', 'January 6', 'Bull Lane', 'London', 'Efes Express', '10:00', 'The Catalan National Assembly', 'Assemblea Nacional Catalana', 'ANC', 'Barcelona', 'Catalan', '11 September', 'Catalonia', 'Diada', 'National Day', 'ANC', 'Barcelona', '10,000', '48,000', 'Catalonia', '5.14 pm', 'the Bank of Spain', 'Social Security', 'the University of Barcelona', 'Letamendi Square', 'two-metre', '2020', 'IHS Markit Inc.', 'Australian', '88', 'Melbourne', '250,000', 'Today', '28 August', '204', 'the Port of Durban', '16.00', 'March 4', '203', '202', '18.00', 'March 4', '23.00', 'the same day', 'Pier 2,', 'Port of Durban', '15.15', 'January 5', 'February 25', 'Illawarra Coast', 'Batemans Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'February 26', 'Malta', '21:00', 'Tuesday 4 February', '18:00 on', 'Wednesday 5 February', 'up to 75 kilometres per hour', 'Valletta', 'The National Weather Service', 'Nashville', 'the coming days', 'Wind Warning', 'Cheatham', 'Davidson, Dickson', 'Hickman', 'Houston', 'Humphreys', 'Montgomery, Robertson', 'Stewart', 'Sumner', 'Williamson', 'Wilson', 'the Australian Bureau of Meteorology (BoM', 'New South Wales', 'NSW', 'Queensland', 'Victoria', 'Queensland', 'NSW', 'Hunter', 'Illawarra', 'Metropolitan', 'Mid North Coast', 'Northern Rivers', 'Northern Tablelands', 'Central Tablelands', 'North West Slopes', 'NSW', 'Mallee', 'Northern Country', 'North Central', 'Central', 'West', 'South Gippsland', 'Wimmera', 'Victoria', 'Brisbane', 'Ipswich', 'Logan', 'Redland City Scenic Rim', 'Queensland', 'Canada', 'Kingston', 'Odessa', 'Napanee', 'Consecon', 'Picton', 'Sandbanks Park', 'Tamworth', 'Sydenham', 'South Frontenac', 'Westport', 'Charleston Lake', 'Plevna', 'Sharbot Lake', 'Western Lanark County', 'Camden East', 'Mccormick', '2561 County Road', 'the Australian Bureau of Meteorology (BoM', 'New South Wales', 'NSW', 'Queensland', 'Victoria', 'Queensland', 'NSW', 'Hunter', 'Illawarra', 'Metropolitan', 'Mid North Coast', 'Northern Rivers', 'Northern Tablelands', 'Central Tablelands', 'North West Slopes', 'NSW', 'Mallee', 'Northern Country', 'North Central', 'Central', 'West', 'South Gippsland', 'Wimmera', 'Victoria', 'Brisbane', 'Ipswich', 'Logan', 'Redland City Scenic Rim', 'Queensland', 'Houston', '19:00', 'September 22', 'Tropical Storm Beta’s', 'Texas', '14 inches', '13 to 14 inches', 'Houston', 'Texas', '11 million', 'Texas', 'Louisiana', 'September 14', '8,100', 'TEU', 'ONE', 'September 11', 'the Port of Ningbo', 'Busan', 'July 24', 'Poznan', 'Poland', 'China', 'Frankfurt', 'several days', 'Duisburg', 'Germany', 'Budapest', 'Hungary', 'Lodz', 'Poland', 'Hamburg', 'this week', 'the International Longshore and Warehouse Union', 'an eight hour', 'Friday, June 19', '29', 'the West Coast', 'Los Angeles', 'Long Beach', 'CA', 'San Francisco/Oakland', 'CA', 'Seattle', 'WA', 'the Juneteenth holiday', 'Several thousand', 'Intelligence', 'Everstream Analytics', 'two hundred', '24-hour', 'Dubai Ports', 'Fremantle', '24-hours', 'the evening of', 'January 14', 'more than 15 months', 'the final hour', 'the coming days', 'Kanawha Coumty', 'Wednesday', 'evening', 'Appalachian', 'more than 10,000', 'West Virginia', 'more than half', 'Kanawha County', 'Charleston', 'Huntington', 'Thursday', 'September 9', 'Centennial Industrial Park', 'the Port of Vancouver', 'Washington', 'USA', 'September 8', 'just over 100 acres', 'August 19', 'Durban', '16:00', 'August 19', \"Women's\", 'March', 'Canada', '18 January', 'Washington', 'D.C.', 'the same day', 'Waterloo Public Square', '11:00-13:30', 'Saskatoon', '12:00-13:00', 'Regina', '10:00-12:00', 'Winnipeg', '11:00', 'Jean Pigott Place', 'Ottawa', '10:00-12:30', 'Riverfront Park', 'Port Dover', '13:00', '100', 'St. George Street', 'Toronto', '11:30-15:00', '1300', 'London Road', 'Sarnia', '12:00-13:00', 'the Port of Hamburg', '15.11', 'July 19', 'Kurt Eckelmann Straße', 'January 11', 'DP World', 'the San Antonio Port', 'Chile', 'January 7', 'June 30', 'the Port of Colombo', 'June 20', 'the Port Authority', 'March 19', 'French', 'two', 'four', 'the Port of Montreal', 'Canada', 'March 19', 'Maisonneuve', 'Spanish', 'September 9', 'Kamax', 'today', 'Kamax', 'Dutch', 'July 17', 'European Bulk Services', '24-hour', 'the Port of Rotterdam', 'Netherlands', 'July 16', 'March 2', 'Xiamen Port', '16:50', '20:00', 'March 1', 'Xiamen Port', 'June 29', 'Xiamen Port', '05:30', '09:30', 'June 28', 'January 3', 'Xiazhi Men', 'the Port of Ningbo', 'January 3', 'more than 4 hours', '1700', 'the Port of Antwerp', 'French', 'the Port of Antwerp', 'January 21', 'the Port of Hong Kong', '24-hours', 'Panama', 'around early December', 'at least 603', 'Hurricane Eta', 'Iota', 'Eta', 'Iota', 'ten', 'Iota', 'two', 'Eta', 'Iota', '20', 'The European-Mediterranean Seismological Centre', '3.6', 'one mile', 'Santos Reyes Nopala', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'November 23', 'Colombian', '1.5 tons', 'Buenaventura', 'Antwerp', 'Colombian', 'Dutch', 'Belgian', '11.5 tonnes', 'Americas', 'Antwerp', 'Guyana', 'South America', 'EUR', '900 million', 'Chalane', 'Beira', 'Zimbabwe', 'Manicaland', 'Mashonaland East', 'Chimanimani', 'Nyanga', 'Bikita', 'Makoni', 'Hwedza', 'Madagascar', 'at least 26', '18', 'Meteo Madagascar', 'Toamasina', 'Brickaville', 'Vatomandry', 'Mahanoro', 'Ambatondrazaka', 'Amparafaravola', 'Moramanga', 'Tsiribihina', 'Melaky', 'Tamatave', 'the Port of Beira', 'Thursday, December 31', 'At least 118', 'Zimbabwe', 'Chalane', '464', '6.1', 'approximately 14 miles', 'Taipei', 'Taiwan', 'October 2', 'the Jawaharlal Nehru Port Trust', 'JNPT', 'China', 'India', '14 days', 'Indian', 'an additional two to three days', 'The Japan Meteorological Agency', '5.0', 'approximately 153 miles', 'Yokohama', 'Liberian', 'Marquessa', '19 miles', '16.5 nautical miles', 'Orchid Island', 'the Philippines Ocean', '24', 'eight', 'Taitung Airport', 'TTT', '16', 'Singapore', 'Tuesday, December 15', 'The European-Mediterranean Seismological Centre', '4.2', 'two miles', 'Santos Reyes Nopala', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'December 8', 'MSC', '2M Alliance', 'Norfolk', 'Le Havre', '20.02.2021', 'Liverpool', 'Norfolk', 'Le Havre', 'December 8', 'MSC', 'Maersk', '2M Alliance', 'U.K.', 'Felixstowe with', 'Liverpool', 'week 52', 'The European-Mediterranean Seismological Centre', '4.0', '30 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'Storm Krovanh', 'Tropical Depression Vicky', 'Philippines', 'the South China Sea', 'approximately 362 miles', 'Ho Chi Minh City', 'Vietnam', '2:00 AM', 'December 21', 'seven miles per hour', '30 miles per hour', '40 miles per hour', 'Wednesday, December 23', 'the South China Sea', 'the next 48 hours', 'Vietnam', 'Tuesday, December 22', 'Philippines', 'at least seven', 'at least four', 'Several thousand', 'Philippines', 'at least 83', 'Yellow Alert', 'Vietnam', 'Phan Rang', 'Phan Thiet', 'Tuy Hoa', 'Yellow Alert', '10–30 percent', 'at least Category 1', 'greater than 50 percent', 'Three', 'the Saffir-Simpson', 'approximately 48 miles', 'Marble Bar', 'December 11', 'The Australian Bureau of Meteorology', 'Weather Warning', 'Pilbara District', 'Bidyadanga', 'Wallal Downs', 'Port Hedland', 'Wickham', 'Marble Bar', 'the De Gray and Pilbara', 'The United States', '6.3', 'approximately 59 miles', 'Manila', 'Philippines', 'at least eight', 'At least three', 'Lubang', 'Two', 'Metro Manila', '2', 'Cubao', 'Recto', 'all morning', 'Metro Rail Transit', '3', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', '4.4', 'approximately 59 miles', 'San Antonio de los Cobres', 'The European-Mediterranean Seismological Centre', '4.7', '63 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The U.S. Geological Survey', '5.0', 'approximately 64 miles', 'SSE', 'Santos', 'Philippines', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', '4.2', 'approximately 8 miles', 'Kaohsiung', 'December 3', '23:00', 'December 2', 'December 3', 'Piedmont', 'France', 'France', 'Cuneo', 'A10', 'Genoa', 'A26', 'Alessandria', 'Cuneo', 'at least 150 kilometers', 'Japanese', 'the Eastern Container Terminal', 'India', 'the Sri Lanka Ports Authority', 'China', 'Ningbo', 'Kazakhstan', 'Aktau', 'Iran', 'Caspian', 'Bandar Anzali', 'Over 82', '7,000', 'twenty-foot', 'December 30', 'The Australian Capital Territory', 'New South Wales', 'January 6', 'COVID-19', 'Sydney', 'Sydney', 'Wollongong', 'the Central Coast of New South Wales', '14-day', '23 October', 'The Bureau of Meteorology', 'Queensland', 'New South Wales', 'Victoria', '30-50', 'Australia', 'BOM', '100', '150mm', 'Friday', 'Queensland', 'Saturday', '24 October', 'Houthi', 'Saudi Aramco', 'Affecting Jeddah', 'Saudi Aramco', 'Houthi', '23 November 2020', 'East Port', 'Economic Affairs', 'Alexandria', 'Alexandria', 'the Port of Jeddah', 'the Ministry of Energy', 'Singaporean', 'December 17', 'Alexandria', 'December 15', 'Saudi Arabian', 'Shuqaiq', 'Saudi Arabia', 'Maltese', 'Wednesday, November 25', 'Greek', 'approximately three feet', 'the Red Sea', 'the Shuqaiq Steam Power Plant', 'Saudi Arabia', 'Houthi', 'November 25', 'Saudi', 'al Arabiya', 'Shia', 'the Red Sea', 'Bab al Mandeb Strait', 'Houthis', 'Saudi Arabia', 'Shia', 'the Red Sea', 'the past few days', 'Yemen', 'Saudi Aramco', 'Jeddah', 'Monday, November 23', 'Aramco', 'Saudi', 'five', 'Red Sea', 'Saudi Aramco', 'Houthi', 'Saudi Arabia’s', 'last September', 'Khurais', 'Abqaiq', 'East', 'The Red Sea', 'Saudi', 'Washington', 'Houthis', 'Houthis', 'US', 'American', 'December 20', 'Amazon', 'Robbinsville Township', 'New Jersey', 'December 26', 'Approximately 115', 'Lomé', 'Approximately 115', 'SSW', 'Lomé', 'Togo', 'Stelios K', 'Lagos', 'Nigeria', 'three', 'December 15', 'ASC Logistics Ltd', 'Hamburg', 'Hamburg', 'Germany', 'November 23', 'Asia Graeca', 'the Parana River', 'San Lorenzo', '01:40', 'November 19', '24 hours', 'Santos', 'Japan', 'Fremantle Port', 'Kuwaiti', 'Al Messilah', 'COVID-19', 'Jeddah', 'Singapore', 'Mersin', 'Turkish', '220 kilograms', 'Brazil', 'Freeport', '612kg', 'EUR69mn', 'South America', 'Malta', 'the Kwai Chung Customs Building', '34 tonnes', 'three', 'Thailand', 'Mainland China', 'Hong Kong', '2', 'Incheon', 'Seoul', 'GM Korea', 'COVID-19', 'Alexandria', '2.5 tonnes', 'two', 'Interior Ministry', 'Jeddah', 'Singaporean', 'Santa Marta', 'Magdalena', '319kg', 'Antwerp', 'Belgium', 'the Smart Port Challenge 2020', 'Port Authority of Singapore', 'the Maritime Innovation and Technology Fund', '11', 'Dappula De Livera', 'MT', 'New Diamond', 'Sterio Ilias', 'the Colombo High Court', 'section 26', 'section 38', 'the Marine Environment Protection Authority Act', 'Australian', '3.3%', 'seasonally', 'quarter-on-quarter', 'the September', 'the Reserve Bank of Australia', 'Australian', 'Victoria lockdownAustralia', '2019)Q3 2020Q2 2020Q3', '2020Q2 202020182019GDP', '7.0-3.8-6.42.81.9', '12.5', 'Australian Bureau of Statistics', '2020', 'September-quarter', 'second', 'Victoria', 'the quarter', '2019', '4.0', 'quarterly', 'the quarter', 'the Australian Bureau of Statistics', 'three', '0.9%', '0.5%', '0.9%', 'the June quarter', 'Jobkeeper', 'the quarter', 'the September quarter', '5.1%', '0.6%', 'first', 'quarterly', 'two years', 'another 4.9%', '2.4%', 'the June quarter', 'a second consecutive quarter', '3.7%', 'the June quarter', '8.2%', 'the quarter', 'Australian', 'the September quarter', '1.9', '48%', '4.4%', '2.1%', '5.9%', 'the June quarter', '6.2%', '7.3%', '8.8%', 'two consecutive quarters', 'early 2020', 'COVID-19', 'a sixth consecutive quarter', '26-year', 'only 1%', '14%', 'Australia', 'AUD', 'dateAnnualQ3', 'seasonally', 'Australian Bureau of Statistics', '2020', 'the Reserve Bank of Australia’s', 'RBA', '1 December', 'three-year', 'Australian Government Securities', '0.10%', 'last month’s', 'Australia', '4 November 2020', 'Reserve Bank', 'Australia', 'RBA', 'Philip Lowe', '2–3%', 'at least three years', 'the coming months', 'Australians', 'Victoria', 'October', 'the current quarter', '20-year', 'October', 'China', 'Australia', 'Australian', 'September-quarter', '2020', 'December', '2021', '2%', '7.0%', 'October', '10.4%', '3.4%', 'one year ago', 'October', 'the current quarter', 'Jobkeeper', 'March 2021', '2021', 'RBA', '0.1%', 'late 2023', '2020', 'IHS Markit Inc.', '60', 'Chinese', 'six', 'Chinese', 'Malaysia', 'Saturday', '10 October', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', 'MMEA', 'Mauritania', 'October 14', '10,000', 'USD 1,440', 'EUR', '1,220', 'the Jinzhou Country Garden', 'Linghe District', 'Jinzhou', 'Liaoning', 'China', '11:30', 'September 6', 'Friday', 'Philippines', 'the Christmas season', 'roughly three-foot', 'December 4', 'Philippines', '436,345', 'COVID-19', '8,509', 'Philippine', 'COVID-19', 'Between March and June', 'Manila', 'one', 'the months', 'some 700,000', 'Christmas', 'COVID-19', 'Philippines', 'The holiday season', 'Christmas', 'October 26', 'between 2 to 4 days', '2', 'Port of Singapore', 'non-2M', '1 day', 'December 14', 'the Port of Tanjung Pelepas', '36 hours', 'November 27', 'the Port of Freeport', 'between 24 to 96 hours', 'at least the first week of December', 'December 9', 'Port of Shanghai Waigaoqiao', 'around 1 day', '1-1.5 days', '1-1.5 days', 'W4', '0.5-1 days', '1-1.5 days', 'October 12', 'the Port of Freeport’s', '3', '24 hours', 'December 23', 'the Port of Durban', '5 days', '3 days', 'Durban Point Terminal', '4 days', 'January 8', 'the Port of Ningbo', 'between 1-2 days', 'Ningbo Beilun Container', '2 days', 'Ningbo Beilun Container', '3', '1 day', 'Ningbo Beilun Container', '4', '1-1.5 days', 'Ningbo Meishan Terminal', '1-1.5 days', 'Ningbo', '1 day', 'the coming 3 days', 'January 19', 'Port Klang', '90 hours to 50 hours', 'Week 4', 'December 31', 'around 12 hours', 'the Hong Kong Modern Terminal', 'December 23', '12 hours', 'the coming 3 days', 'the Yantian International Container Terminal', 'Awami Workers Party', 'Karachi', '5 December', 'Regal Chowk', '15:00', 'Fuwara Chowk', 'Sindh', 'Tuesday, October 20', 'Pakistan', 'Army', 'Javed Bajwa', 'the “Karachi incident”', 'Pakistan', 'Muslim', 'Nawaz', 'Mohammad Safdar', 'Karachi', 'October 19', 'PML-N', 'Nawaz Sharif', 'Maryam Nawaz', 'the Pakistan Democratic Movement', 'PDM', 'Karachi', 'Sunday', 'Imran Khan', 'Monday', 'IGP', 'Army Rangers', 'Sindh', 'Twitter', 'October 20', 'Sindh', 'Army', 'Karachi', 'PDM', 'Khan', 'PML-N', 'PML-N', 'Khan', 'Captain Safdar', 'the coming weeks', '2', 'the Port of Durban', 'November 16', '01:45', '01:40', 'the same day', 'October 2', 'London Gateway Port', 'October 22', 'Sydney DP World', 'October 25-26', 'October 26', 'TMB metro', 'Barcelona', 'BCN', 'Monday, January 11', 'November 19', 'the Paraguay River', 'Argentine', 'Ypané Island', 'San Antonio', 'Paraguay', 'Paraguayan', 'Paraguay River', 'San Antonio', 'today', '19 November', 'November 20', 'German', 'Kattwyk', 'the Port of Hamburg', 'Germany', 'the afternoon of November 19', 'December 14', 'BEHR Logistik GmbH', 'Hamburg', 'Bengkulu', 'Friday, November 27', 'at least 22', 'seven', 'Seven', 'Gading', 'Kampung Malayu', '482', 'Ratu Agug', 'Singaran Pati', 'Gading Cempaka', 'Kampung Malayu', 'Selebar', 'Ratu Sambun', 'Muara Bangkahulu', 'Thursday, December 3', 'the next few days', 'November 12', 'Berge Bandai', 'San Antonio', '1', 'crewmember', 'COVID-19', 'Viña', 'December 15', 'the Port of Singapore', '43-65 hours', '7 days', 'the Port of Chittagong', 'October 26', 'BHP Group', 'Shenzi', 'Neptune', 'the U.S. Gulf of Mexico', 'Tropical Storm Zeta', 'BHP Group plc', 'Anglo', 'Australian', 'Melbourne', 'Victoria', 'Australia', 'thousands', 'Northeast', '25 December', 'more than 60 miles per hour', '96 kilometers per hour', 'The National Weather Service', '1-2 inches', '2.5-5', 'Connecticut', 'Rhode Island', 'Massachusetts', 'Pennsylvania', 'New York', 'New Jersey', 'Connecticut', 'Maine', 'approximately 147,407', 'Wednesday', 'Kampung Gelam', 'Port Dickson', 'Kuala Lumpur', 'Sunday', 'Wednesday', 'Sand', 'Hon Gai Port', 'eight', 'Vietnamese', 'China', 'Vietnam', 'Quang Ninh', 'COVID-19', 'October 13', 'BP Plc', 'the U.S. Gulf of Mexico', 'BP plc', 'British', 'London', 'United Kingdom', 'December 27', 'Brightway Holdings', 'two', \"Brightway Holdings'\", 'La Glove', 'Kajang', 'Biopro', 'Port Klang', 'Brightway Holdings', '340 million', 'Two', \"Brightway Holdings'\", 'Kimberly-Clark', 'Ansell', 'December 9', '1', 'Kaohsiung Harbor', 'Taiwan', '1', 'PIONEER', 'Everstream Analytics', 'Durban', 'Central Business District', 'Thursday', 'Pine Street', 'the M4 Southern Freeway', 'Sugar Terminal', 'Queen Nandi', 'the Caledonian Sleeper', '48-hour', '4 and 11 October', 'Caledonian', 'Scotland', 'London', '4', 'October', 'the 11 October', 'Provincial Municipal Council', 'the Public Municipal Cleaning Service Company of Calloa', 'Callao District', 'nine days', 'Slimp Callao', '1,600', 'Tuesday, December 29', 'the early morning hours of January 6', '22 December', 'Asia Securities Industry &', 'Financial Markets Association', 'ASIFMA', 'the Asia-Pacific region', 'the Future of Sustainable Data Alliance', '12-month', '500', 'East Asia', '5%', '30%', 'North America', 'ASIFA', '56%', '35%', 'ESG', 'Bangladesh', 'China', 'Indonesia', 'Japan', 'India', 'Vietnam', 'Asian', 'ESG', 'ASIFMA', 'eight', 'ESG', 'ESG', 'ESG', '2020', 'ASIFMA', 'China', 'Hong Kong', 'Singapore', 'ESG', 'Japan', 'Government Pension Investment Fund', 'MUFG', '2020', 'IHS Markit Inc.', 'Canadian', 'Brookfield', '60–80%', 'Dalrymple Bay Infrastructure', 'Queensland', 'Australia', 'AUD1 billion', 'USD710 million', 'James Stevenson', 'IHS Markit’s Coal', 'Hannah Cotillon', 'Country Risk', 'Australia', 'Asian', 'Queensland', 'DBCT Management', '99-year', '50-year', '2001', '49-year', 'Brookfield', '2009', '80%', '62 million tonnes', '2019', 'Japan', 'South Korea', 'Taiwan', 'India', 'China', 'the Bowen Basin', 'DBCT', '21%', 'some 7%', 'Queensland', '31 October', 'Annastacia Palaszczuk', 'Labour Party', 'third', 'September', 'Palaszczuk', 'the Bowen Basin', 'March 2020', '2019', 'Korea', 'National Pension Service', 'Global Infrastructure', 'CK Infrastructure', 'Hong Kong', '19 October', 'up to half', 'earlier this year', 'Australian', 'AUD1-billion-plus', 'IPO', 'Viva Energy', 'mid-2018', 'Healthscope', 'Medibank Private', '2014', 'Queensland Competition Authority', 'five-yearly', 'Australian', 'China', 'Australian', 'October 2018', 'Coronado Global Resources', 'AUD773 million', 'less than half', 'the Australian Stock Exchange', 'first-day', '8.5%', '80%', 'IPO', 'Australian', 'Yancoal', '80%', '2017', 'second', 'Whitehaven', 'just 18%', '2018', 'Bay', 'first', 'Australia', 'late 2018', 'early 2020', 'Australian', 'Coronado Global Resources', 'the last two years', '29 October', 'ANZ', '2030', 'Westpac', 'Australia', 'four', 'NAB', '2035', 'Australian', 'Chinese', 'Australian', 'COVID-19', 'China', 'Australian', 'South Korea', 'Japan', '2050', 'China', '2060', 'Japan', 'South Korea', 'around 5.5%', 'Japanese', 'Chinese', 'Australian', 'Australian', 'Whitehaven', 'March', 'over half', 'Chinese', 'Japanese', '20%', 'six years ago', 'China', 'Japan', 'India', 'Adani Enterprises', 'Carmichael', 'Australia', 'India', 'Vietnam', 'the next decade', '2020', 'IHS Markit Inc.', 'November 17', 'the Gulf of Guinea', 'about 60 nautical miles', 'Lome', 'Togo', 'December 8', 'Marquessa', '8', '16', 'Marquessa', 'Laizhou', 'Singapore', 'Dec 15', 'October 12', '1,317,969', 'USD 370,349.29', 'EUR', '312,358.65', '1,300,000', 'USD 365,300', 'EUR', '308,100', 'five', 'the National Civil Defense Institute', 'Callao', 'five', 'October 22', '14,000', 'INR 150,000,000', 'USD 1,950,000', 'EUR', '1,650,000', 'the evening of', 'October 21', 'Melumalai', 'Krishnagiri', 'TN', 'Redmi', 'Chennai', 'Mumbai', 'Xiaomi Corporation', 'October 11', '1,000,000', 'USD 281,000', 'EUR', '237,000', 'October 10', '30th', 'Argentina Avenue', 'Callao', 'Ten', 'December 11', '13,920', 'INR 150,000,000', 'USD 1,950,000', 'EUR', '1,650,000', 'October 20', 'Chennai', '10', '30', 'seven', '13,920', 'December 17', 'AED', '352,000', 'EUR', '80,960', 'Jebel Ali', 'Lehbab', 'December 11', 'Morocco', '48-hour', 'December 21', 'Morocco', 'Spain', 'recent months', 'Moroccan', 'the Port of Algeciras', 'September 23', 'Central Regional Highway', 'La Victoria', 'Aragua', 'December 4', 'CI2', 'Interasia Catalyst', '1 day', 'Jawaharlal Nehru Port Container Terminal', 'JNPCT', 'December 10', '11', 'CONG THANH', '27', 'the South China Sea', 'the early morning', 'October 7', 'Hai Phong', 'Hai Tho', '16:00', 'October 7', 'Intelligence', 'Everstream Analytics', 'December 2', 'Vessel', 'ONE', 'Port of Nhava Sheva', 'December 11', 'Port of Pipava', 'India', 'December 14', 'Port Klang', 'Malaysia', 'Intelligence', 'Everstream Analytics', 'NCI', 'Balbina', 'Jawaharlal Nehru Port Terminal', 'JNPT', 'ETA', 'December 21', 'Port of Kelang and Port of Singapore', 'CMA CGM', 'USD 1,250', 'the Port of Xingang', 'China', 'December 24', 'December 28', 'December 4', 'the Port of Xingang', 'Tianjin', 'COVID-19', 'Reefer', 'Qingdao', 'Dalian', 'the Port of Busan', 'Catalan', 'Barcelona', 'October 2', 'Sant Jaume Square', 'Catalonia Square', 'Earlier this week', 'Catalonia', 'Committee for the Defense of the Republic', 'CDR', 'Spain', 'Supreme Court', \"Quim Torra's\", '18-month', 'Western Australia State', 'the end of Monday 9 November', 'Port Hedland', 'Carnarvon', 'October 22', 'CCOO', 'November 1', 'M-12', 'R2', 'R3', 'R4', 'AP-36', 'AP-7', 'Cartagena-', 'Vera', 'Circunvalación de Alicante', 'December', 'December 22', 'Cemport, Inc.', 'chapter 7', 'December 21', 'New Jersey Bankruptcy Court', 'Cemport, Inc.', 'Severe Tropical Storm Atsani', 'Taiwan', 'the Central Weather Bureau', 'CWB', 'Pingtung', 'Taitung', 'Kaohsiung city', 'November 6', 'Chennai Port', 'The Chennai Port Trust', 'Port Storm Warning Signal Flag No.3', 'December 6', 'Chinese', 'Kanhaixuan', 'Shangdongwan', 'Dongjiang Port District', 'COVID-19', 'China National Offshore Oil Corporation', 'Jinzhou', '6/11', 'the Bohai Sea', 'about 16,500 barrels', '2023', 'October 13', 'China', '10', 'the Ministry of Transport', 'Dalian', 'Tianjin', 'Qingdao', 'Shanghai', 'Ningbo', 'Fuzhou', 'Xiamen', 'Guangzhou', 'Shenzhen', 'Haikou', '14 days', 'December 25', 'China', 'Australia', 'New South Wales', 'Western Australia', 'China', 'General Administration of Customs', 'GAC', 'Chinese', 'Australian', 'Victoria', 'Queensland', 'Tasmania', 'South Australia', 'Everstream Analytics', 'Chinese', 'the Taiwan Strait', '20 December', 'Taiwan', 'Chinese', 'Shandong', 'the Taiwan Strait', 'four', 'one day', '7th', '(USS Mustin', 'the United States of America', 'Chinese', 'Chinese', 'Dalian', 'Thursday', '17 December', 'Taiwan', 'Chinese', 'Shandon', 'China', 'Taiwan', 'the Taiwan Strait', 'November 3', 'Christine', 'Setubal', 'Coruna', 'October 25 to November 1', 'Hispania', 'Conakry', 'Bremerhaven', 'October 10', 'this week', 'two-mile', 'Pantai Cermin', 'Port Dickson', 'the Department of Environment', 'at least Friday', 'Saturday', 'the Pantai Cermin', 'second', 'Port Dickson', 'a little over a week', 'Kampung Gelam', 'October 4', 'October 28', 'DP World Fremantle', '24 hours', 'Port Day', 'November 3', 'October 29', 'CGM', 'Fuzhou', 'China', 'the end of 2020', 'November 1 to December 31', 'US', 'Brazil', 'November 27', 'December 31', 'October 21', 'CMA CGM', 'USD 150', 'Asian', 'Southampton', 'November 1', 'CMA CGM', 'Ningbo', 'Yantian', 'China', 'Los Angeles', 'U.S.', '12 days', 'first', 'Yantian', 'December 4', '24 hours', 'November 19', 'Coles Supermarkets', 'Sydney', 'Smeaton Grange', 'New South Wales', 'the Verrazzano-Narrows Bridge', 'Staten Island', 'New York City', 'The Staten Island Expressway', 'Ocean Terrace', 'Brooklyn', 'the Port of Colombo', 'December 16', 'the East Container Terminal', 'ECT', 'The Liberated Port Workers’ Union', 'Niroshan Gorakanage', 'the Progressive Trade Union on Commerce, Industry', 'October 12', 'Colonial Pipeline', 'U.S.', 'Hurricane Delta', 'Sunday', '2', 'Saturday', 'evening', 'Baton Rouge', 'Louisiana', 'Saturday', '2', 'Houston', 'Greensboro', 'North Carolina', 'Colonial Pipeline', 'North America', 'December 8', 'the Port of Southampton', 'Alliance', 'NYK Deneb', 'the last few days', 'the Port of Southampton', 'Hapag-Lloyd', 'EUR', '175', 'Far East Asia', 'London', 'November 15', 'CMA CGM', 'USD 100', 'Australia', 'New Zealand', 'November 30', 'Indian', 'the Middle East', 'the Red Sea', 'November 15', 'USD 150', 'North East', 'South East Asia', 'China', 'Hong Kong', 'Macao', 'Southampton', 'November 15', 'November 27', 'Australian', 'Sydney', 'December 10', 'the London Gateway Port', 'C&R', 'November 4', 'Virginia International Gateway', 'Portsmouth', 'Virginia', 'Mentari Crystal', 'Teluk Lamong Terminal', 'Surabaya', 'East Java', 'the evening of', 'November 15', '137', 'the Chinese Maritime Safety Administration', 'the Yangtze River', 'two', 'one', '16', 'ONE', 'APUS', 'the Port of Kobe', 'Japan', 'December 8', 'more than 1,900', 'Yantian', 'China', 'Los Angeles', 'U.S.', 'the North Pacific', '64', 'June 2013', 'MOL Comfort', 'Yemen', '4,293', 'ONE', 'APUS', 'Chidori Ship Holding LLC', 'NYK Shipmanagement', 'November 6', 'China', 'November 6', 'COSCO', 'CMA CGM', 'GP', '40', 'GP & HC', '45', 'Ports', 'Qingdao', 'Dalian', 'Tianjin', 'Shanghai', 'Ningbo', 'Fuzhou', 'Xiamen', 'Shenzhen', 'Nansha', 'Chongqing', 'Lianyungang', 'November 6', 'China', 'November 6', 'COSCO', 'CMA CGM', 'GP', '40', 'GP & HC', 'Ports', 'Keelung', 'Taoyuan', 'Kaohsiung', 'Taichung', 'October 28', 'Maersk Launceston', 'Greek', 'the Port of Piraeus', 'October 27', 'Maersk Launceston', 'the Central Port Authority of Piraeus', 'The Maersk Launceston', 'Portugal', '2005', '4,533', 'December 21', 'the Port of Freeport', 'between 24', '48 hours', '12 - 24 hours', 'South African', 'today', 'the Congress of South African Trade Unions', 'Cosatu', 'the SA Federation of Trade Unions', 'Saftu', 'Burgers Park', 'Pretoria', 'the National Treasury’s', 'Church Street', 'Francis Baard Street', 'the Employment and Labour Department', 'Johannesburg', 'Braamfontein', 'the Chamber of Commerce', 'Transnet', 'Johannesburg', 'Durban', 'Curries Fountain Stadium', 'the Langa Multi-Purpose Sport Centre', 'the City of Cape Town', 'Saftu', 'December 29', 'Guangzhou', 'Mongla', 'Bangladesh', 'around 04:00', 'December 28', '12 hours', '11.5 tonnes', 'Guyana worth EUR900mn', 'the Port of Antwerp', 'San Antonio', 'the CSL Manhattan', '14-day', 'Shanghai', 'one', 'COVID-19', 'two weeks', 'Araucaria', 'Curitiba', 'Parana', 'Approximately 100,000', 'Araucaria', 'Arvoredo', 'Barigui', 'Boqueirao', 'Cachoeira', 'Capela Velha', 'Center', 'Coastal', 'Garden Las Vegas', 'Fazenda Velha', 'Jardim Atenas', 'Jardim Plinio', 'Jatoba', 'Laranjeiras', 'Panamerica', 'Passauna', 'Sabia', 'Sao Miguel, Station', 'Tindiquera', 'Vila Nova', 'Curitiba', 'Augusta', 'Sao Miguel', 'Dutch', 'October 5', 'Brazilian', '472 kg', 'the Port of Salvador', 'the Port of Antwerp', 'December 1', 'about 1,050 kilograms', 'the Port of Rotterdam', 'Netherlands', 'November 30', 'dozens', 'US', 'the Dominican Republic', 'EUR', '78 million', 'Nijmegen', 'December 11', 'Rotterdam', '1064', '79 million', 'two', 'One', '106', 'Peru', 'second', '958', 'Costa Rica', 'Three', 'October 28', '1,435', '107 million', 'Rotterdam', 'Colombia', 'October 27', 'Antwerp', 'December 2', 'Customs', 'the Port of Rotterdam', '421', 'two', 'December 2', 'EUR', '31 million', 'two', 'Ecuador', 'the Dominican Republic', 'Belgian', '1,3 tons', 'the Port of Antwerp', 'IHS Markit', '2019', 'COVID-19', '43.5-million', 'Johns Hopkins University', 'Imperial College', 'COVID-19', 'England', 'between June and September', '75', 'The World Health Organization (WHO', 'COVID-19', 'US', 'Japan', 'COVID-19', 'Eli Lilly', 'US', 'COVID-19', 'COVID-19', '2019', 'COVID-19', '43,504,448', '27 October', '43,117,883', 'the previous day', 'Johns Hopkins University', 'The United States', '8,704,534', 'India', '7,946,429', 'Brazil', '5,409,854', 'Russia', '1,520,800', 'France', '1,209,651', 'Argentina', '1,102,301', 'Spain', '1,098,320', 'Colombia', '1,025,052', 'the United Kingdom', '897,470', 'Mexico', '1,159,533', '1,154,703', 'the previous day', 'US', '225,735', 'Brazil', '157,397', 'India', '119,502', 'Mexico', '89,171', 'UK', '45,088', 'Italy', '37,479', 'France', '35,052', 'Spain', '35,031', 'Peru', '34,149', 'Iran', '32,953', 'United States', 'Just one week', 'US', 'COVID-19', '47', '50', '34', 'UK', 'The Guardian', 'seven-day', '68,767', 'Sunday', '25 October', '67,293', 'July', 'April', 'COVID-19', 'US', '10%', 'the past 14 days', '794', 'Sunday', 'the University of Washington', 'as many as 386,000', 'February next year', 'Vaccines', 'updateVaccinesCanada', 'Canadian', 'Precision Nanosystems', 'Canadian', 'COVID-19', 'COVID-19', 'Canada', 'The National Research Council of Canada’s', 'Industrial Research Assistance Program', 'CAD5 million', 'Canadian', 'Entos Pharmaceuticals', 'COVID-19', 'Covigenix', 'Canadian', 'Israel', 'The Jerusalem Post', 'the Israel Institute for Biological Research', 'IIBR', 'November', 'VSV', 'COVID-19', 'South Korea', 'United Kingdom', 'The South Korean Ministry of Food and Drug Safety', 'UK', 'AstraZeneca', 'COVID-19', 'COVID-19', 'Reuters', '90 days', 'TreatmentsCanada', 'United States', 'Canadian', 'Revive Therapeutics', 'US', 'COVID-19', 'over 200', 'the end of December', 'United States', 'Eli Lilly', 'US', 'the National Institute of Allergy and Infectious Diseases', 'ACTIV-3', 'COVID-19', 'COVID-19', 'LY-CoV555', 'AbCellera', 'US', 'COVID-19', 'COVID-19', 'NIH', 'Lilly', 'Phase II BLAZE-1', 'COVID-19', 'Lilly', 'Lilly', 'United States', 'the University of Maryland', 'COVID-19', 'daily', 'COVID-19', 'ICU', 'Anesthesia', 'Analgesia', 'COVID-19', 'The Global Coalition for Adaptive Research', 'first', 'REMAP-CAP', 'over 20', 'US', 'COVID-19', 'US', 'Amgen', 'Japanese', 'Eisai', '45', 'COVID-19', 'Eritoran', 'the Children’s National Hospital', 'Washington', 'Blood', 'COVID-19', 'COVID-19', 'the US FDA', 'COVID-19', 'United States', 'US', 'Ortho Clinical Diagnostics', 'European', 'the European Union', 'EUA', 'the US FDA', 'Ortho', '97.8%', '99.2%', 'United States', 'US', 'Helix', 'EUA', 'the US FDA', 'COVID-19', 'United States', 'US', 'Truvian Sciences', 'EUA', 'the US FDA', 'Easy Check COVID-19', 'IgG Point-of-Care Antibody Test', 'US', 'COVID-19', '10 minutes', 'Brazil', 'Public Prosecutor’s Office', 'the Ministry of Health', 'MoH', '46 million', 'Chinese', 'COVID-19', 'CoronaVac', 'Folha de S. Paulo', 'Jair Bolsonaro', 'last week', 'MoH', 'São Paulo’s', 'Butantan Institute', 'Sinovac', 'São Paulo', 'João Doria', 'Folha', 'AstraZeneca', 'Oxford University’s', 'Brazil', 'CoronaVac', 'Brazilian', 'Monday', 'Reuters', 'Europe', 'the European Medicines Agency', 'EMA', 'COVID-19', 'below 50%', 'the Wall Street Journal', 'WSJ', 'the US FDA', 'COVID-19', 'the US', 'FDA', 'Center for Biologics Evaluation and Research', 'June', 'at least 50%', '95%', 'less than 30%', 'China', 'Center for Drug Evaluation', 'CDE', 'Brazil', 'Anvisa', 'WSJ', 'EMA', 'at least one', 'the first quarter of 2021', 'France', 'France', 'USPO', 'COVID-19', 'USPO', 'November', 'USPO', 'two', 'the day', 'Italy', 'Italian', 'Roberto Speranza', 'COVID-19', 'Piedmont', 'first', 'next week', 'Lazio', 'Emilia Romagna', 'Japan', 'Japan', 'Tuesday', '27 October', 'COVID-19', 'The Japan Times', 'JPY671.4 billion', 'the first half of 2021', 'AstraZeneca/Oxford University', 'UK', 'Pfizer', 'US)/BioNTech', 'Imperial College London', 'English', 'between June and September', 'COVID-19', 'REal Time Assessment of Community Transmission', 'more than 365,000', 'England', 'three', 'between late June and September 2020', '6.0%', '5.8', '6.1', '4.8%', '4.7', '5.0', '4.4%', '4.3', '4.5', 'PCR', 'WHO', 'Tedros Adhanom Ghebreyesus', 'Monday', '27 October', 'COVID-19', 'a day', 'US', 'Donald Trump', 'Mark Meadows', 'UK', 'Guardian', 'Monday', 'Mike Ryan', 'Reuters', 'Europe', 'Ryan', 'today', 'Canadian Medical Association', 'COVID-19', 'Lilly', 'NIH', 'COVID-19', 'implicationsThe World Health Organization', 'COVID-19', 'US', 'One', 'Japan', 'COVID-19', 'Eli Lilly', 'US', 'COVID-19', 'COVID-19', 'Imperial College’s', 'COVID-19', 'England', 'between June and September this year', '75', '2020', 'IHS Markit Inc.', 'second', 'UK', 'Pfizer', 'US', 'Germany', '2019', 'COVID-19', 'Pfizer', 'first', 'COVID-19', 'India', 'DCGI', 'the Serum Institute of India', 'SII', 'India', 'AstraZeneca', 'UK', 'Oxford University’s', 'Covishield', 'World Health Organization', '500 million', 'COVID-19', 'the first quarter of 2021', 'Indonesia', '1.2 million', 'Sinovac (China)’s', 'CoronaVac', '6 December 2020', '1.8 million', 'early January 2021', 'Israel', 'Ministry of Health', 'APA', 'Moderna', 'US', 'an additional 4 million', 'COVID-19', 'Canadian', 'APA', 'mRNA-1273', '40 million', '2021.OutlookAs', 'Russian', 'Sputnik V', 'the Ministry of Health', 'two', 'SII', 'Covishield', 'March 2021', '20–30 million', 'Covishield', 'Indian', 'COVID-19', '2019', 'COVID-19', '67,143,905', '7 December', 'Johns Hopkins University', '65,235,456', '4 December', 'US', '14,761,577', '14,143,801', '4 December', 'India', 'second', '9,677,203', '9,571,559', '4 December', 'India', 'Brazil', '6,603,540', '6,487,084', '4 December', 'Russia', '2,466,961', 'France', '2,345,648', 'COVID-19', '1,537,260', '1,506,601', 'the previous day', 'US', '282,324', '276,366', '4 December', 'US', 'Brazil', '176,941', '175,270', '4 December', 'India', '140,573', 'Mexico', '109,717', 'the United Kingdom', '61,342).France', 'Paris', 'La Pitié-Salpêtrière', 'COVID-19', 'less than 5,000', '15 December', 'mid-December', 'third', 'mid-January 2021', 'France', '11,022', 'COVID-19', '6 December 2020', 'Vaccines', 'Bahrain', 'EUA', 'Pfizer', 'US', 'Germany', 'COVID-19', '4 December', 'National Health Regulatory Authority', 'Bahrain', 'second', 'UK', 'Bahrain', 'Sinopharm', 'China', 'COVID-19', 'Bahrain', 'Mariam Al-Jalahma', 'Pfizer', 'the Kingdom’s', 'Bahrain', 'COVID-19', 'the health ministry', 'Arab News', 'Pfizer', 'the Gulf Lindsey Dietschi', 'Bahrain', 'Kingdom”', 'India', 'Pfizer', 'COVID-19', 'India', '4 December', 'Pfizer', 'first', 'COVID-19', 'India', 'DCGI', 'Pfizer', 'Reuters', 'the Government of India', 'Pfizer', 'COVID-19', 'Bahrain', 'UK', 'India', 'The Serum Institute of India', 'SII', '6 December', 'EUA', 'India', 'AstraZeneca', 'UK', 'Oxford University’s', 'Covishield', 'SII', 'Adar Poonawalla', 'SII', 'DCGI', 'four', 'two', 'UK', 'Brazil', 'India', 'Reuters', 'Pfizer', 'COVID-19', 'India', 'the Indian Council of Medical Research', 'ICMR', 'SII', '40 million', 'Covishield', 'DCGI', 'Indian', 'January 2021', 'Poonawalla', '20–30 million', 'March 2021', 'the Financial Times', 'INR600', 'USD8.00', 'India', 'Indian', 'USD3.00', 'Turkey', 'Turkey', 'COVID-19', 'Phase II', 'weeks', 'MENAFN', 'Erciyes University', '44', '14 December', 'Phase II', 'two days later', 'About 200', 'more than 100', 'the university research centre', 'November', 'Turkey', 'Chinese', 'COVID-19', 'Sinovac', 'CoronaVac', '11 December', '6–8 months', 'millions', '328 million', 'six months', 'COVID-19', 'the University of Pennsylvania', 'Regeneron', 'US', 'Regeneron', 'COVID-19', 'AAV', 'James Wilson', 'AAV', 'AAV', 'first', 'AAV', 'the US FDA', 'United States', 'Eli Lilly', 'US', 'UnitedHealth', 'US', 'UnitedHealthcare Medicare Advantage', 'EUA', 'COVID-19', 'COVID-19', 'UnitedHealth', 'Optum', 'daily', 'COVID-19', '500,000', 'at least 5,000', 'Eli Lilly', 'The US FDA', 'Quest Diagnostics', 'US', 'COVID-19', 'first', 'COVID-19', 'EUA', 'US', 'Quest Diagnostics', 'FDA', 'Stephen Hahn', 'Canada', 'Singapore', 'Switzerland', 'United Kingdom: Pharmaceutical', 'Australia', 'Canada', 'Singapore', 'Switzerland', 'the United Kingdom', 'the Access Consortium', '4 December', 'COVID-19', 'COVID-19', 'May 2020', 'the UK Medicines', 'Healthcare Products Regulatory Agency', 'the Access Consortium’s', 'Canada', 'Canadian', 'APA', 'Moderna', 'US', 'Canadian', 'Anita Anand', '4 December', 'an additional 20 million', 'APA', '40 million', '2021', 'APAs', 'Canadian', '20 million', 'mRNA-1273', '56 million', 'mRNA-1273', 'mid-October 2020', '15 October 2020', 'Moderna', 'Health Canada', 'mRNA-1273', 'January 2021', 'China', 'Sinovac Biotech', 'China', 'USD515 million', 'Hong Kong', 'Sino Biopharmaceutical', 'Sino Biopharmaceutical', '15%', 'Sinovac Life Sciences', 'Sinovac Biotech', 'Sinovac', 'COVID-19', 'CoronaVac', 'Asian', 'Brazil', 'Turkey', 'COVID-19', 'December', 'IHS Markit’s', 'weekly', 'Chinese', '300 million', 'second', 'late 2020.France', 'French', 'COVID-19', 'France', 'Alain Fischer', '6 December', '1 January 2021', 'the World Health Organization (WHO', 'COVID-19', 'Soumya Swaminathan', 'Pfizer', 'two days', 'Pfizer/BioNTech’s BNT162b2', 'about 20%', 'WHO', '2 billion', 'the end of 2021', 'Gavi', 'the Coalition for Epidemic Preparedness Innovations', 'CEPI', '180', 'Canada', 'UK', '500 million', 'COVID-19', 'the first quarter of 2021', 'Swaminathan', 'the end of the first quarter of 2021', 'Indonesia', 'Terawan Agus Putranto', 'COVID-19', 'AstaZeneca', 'Pfizer/BioNTech’s BNT162b2', 'Sinopharm', 'Sinovac Biotech’s', 'CoronaVac', 'Moderna', 'mRNA-1273', 'The Indonesian Food and Drug Monitoring Agency', 'EUA', 'Sinovac', 'first', 'Indonesian', 'late January 2021', 'Indonesia', 'Indonesia', '1.2 million', 'Sinovac’s', 'CoronaVac', '6 December', '1.8 million', 'early January 2021', 'Israel', 'Israel', 'Ministry of Health', 'APA', 'Moderna', 'an additional 4 million', 'COVID-19', 'Israel', 'APA', '6 million', 'Jerusalem Post', 'APA', 'the Ministry of Health', 'Moderna', 'June 2020', 'an estimated USD73 million', 'USD12', 'APA', 'Mark Rutte', 'Netherlands', 'about 1 million', 'Pfizer/BioNTech’s BNT162b2', '4 January', '400,000', 'Moderna', 'the first quarter of 2021', 'Poland', 'first', 'COVID-19', 'Poland', 'early January 2021', 'Polish', 'Michal Dworczyk', 'Healthcare', 'about 45 million', 'EU', 'Russia', 'the Russian Direct Investment Fund', 'Kirill Dmitriev', '2 million', 'Russians', 'December', 'Russia', 'The Russian Ministry of Health', 'Gamaleya Institute’s', 'Sputnik V', 'COVID-19', 'two', 'five', 'Pharmvestnik', 'Vademecum', 'Vektor', 'Russia', 'Russian', 'EDL', 'Russian', 'last week', 'Vladimir Putin', '5 December', 'Moscow', 'Tatyana Golikova', 'Pharmvestnik', 'Russia', 'the end of next week', 'Golikova', '168,000', 'Sputnik V', '1 December', 'EpiVacCorona', 'later this month', 'Moscow', 'South Africa', 'South Africa’s', 'Ministry of Health', '4 December', 'COVID-19', 'WHO', 'around the second quarter of 2021', 'United Kingdom', 'UK', 'first', 'Pfizer', 'COVID-19', '8 December', 'first', 'over 80', 'about 800,000', 'the first week', 'United States', 'Joe Biden', 'California', 'Xavier Becerra', 'health and human services', 'Biden', 'the Massachusetts General Hospital', 'Rochelle Walensky', 'the US Centers for Disease Control and Prevention', 'today', 'Russian', 'Sputnik V COVID-19', 'two', 'here)United Kingdom:', 'UK', 'MHRA', 'Brexit', 'Pfizer', 'Russian', 'Sputnik V', 'the Ministry of Health', 'two', 'AstraZeneca’s AZD1222', 'Russia', 'Sputnik V', 'the Gamaleya Institute', 'Russia', 'SII', 'AstraZeneca', 'Covishield', 'India', 'March 2021', 'Indian', 'Narendra Modi', '300 million', 'COVID-19', 'July 2021', 'UK', 'AstraZeneca’s AZD1222', '20–30 million', 'Covishield', 'Indian', '1.4 billion', 'one', 'COVID-19', '9.5 million', '139,000', 'Covishield', 'Indian', 'the Financial Times', 'the Financial Times', 'AstraZeneca', 'the Serum Institute of India', '2020', 'IHS Markit Inc.', 'IHS Markit', '2019', 'COVID-19', '60,465,801', '26 November', 'The US National Institutes of Health', 'NIH', 'National Institute of Allergy and Infectious Diseases', 'NIAID', '1,500', 'Veklury', 'Gilead Sciences', 'US', 'Veklury', 'COVID-19', 'COVID-19', 'the New England Journal of Medicine', 'US', 'Eli Lilly', 'US', 'Canadian', '26,000', 'COVID-19', 'USD32.5 million', 'New York', 'COVAXX', 'COVID-19', 'more than 140 million', 'USD2.8 billion', 'Brazil', 'Ecuador', 'Peru', 'OutlookThe US FDA', 'Veklury', 'NIH', 'the World Health Organization (WHO)', 'SOLIDARITY', 'FDA', 'WHO', 'Veklury', 'Veklury', 'WHO', 'SOLIDARITY', '28-day', 'WHO', 'NIH', 'Adaptive', 'COVID-19', 'the research institute', 'Veklury', 'FDA', 'the National Expanded Access Treatment Protocol', 'the Mayo Clinic', 'US', 'NEJM', '2019', 'COVID-19', '60,465,801', '26 November', '1.09%', '59,814,726', 'the previous day', 'Johns Hopkins University', 'US', '12,777,753', '1.43%', '12,597,333', 'the previous day', 'US', 'India', '9,266,705', '9,222,216', 'a day earlier', 'Brazil', '6,166,606', 'France', '2,221,874', 'Russia', '2,169,424', 'Spain', 'sixth', '1,605,066', 'the United Kingdom', '1,560,872', 'Italy', '1,480,874', 'Argentina', '1,390,388', 'Colombia', '1,270,991', '39,910,553', 'about 66%', 'COVID-19', '1,422,247', '0.84%', '1,410,458', 'the previous day', 'COVID-19', '262,266', 'US', '0.89%', '259,962', '25 November', 'US', '18.44%', 'COVID-19', 'US', 'Brazil', '170,769', 'India', '135,223', 'Mexico', '103,597', 'the United Kingdom', '56,630', 'Italy', '52,028', 'France', '50,700', 'Iran', '46,207', 'Spain', '44,037', 'Argentina', '37,714', '10', '67.44%', 'COVID-19', 'Americas', 'COVID-19', '60 million', 'Americas', 'weekly', 'Americas', '1.5 million', 'the past seven days', 'North, Central', 'South America', 'the Pan American Health Organization', 'PAHO', 'the World Health Organization (WHO', 'PAHO', 'yesterday', '25 November', 'US', 'daily', '2,157', 'first', 'May', 'daily', '2,000', '24 hours', 'Iran', 'Iran', 'yesterday', '13,843', 'Sima Sadat Lari', 'the Ministry of Health and Medical Education', 'Iranian', 'yesterday', 'COVID-19', '469', '24 hours', 'Iran', 'the Middle East', '894,385', 'Iraq', '524,187', '12,086', 'Turkey', 'Turkey', 'yesterday', 'third', 'daily', 'COVID-19', 'the health ministry resumed publication', 'yesterday', '28,351', 'the previous 24 hours', '6,814', 'daily', 'Turkey', 'July', 'Turkish', 'Turkey', 'Fahrettin Koca', 'Coronavirus Science Committee', 'daily', 'around 80%', 'Vaccines', 'Brazil', 'National Health Surveillance Agency', 'Anvisa', '25 November', 'Pfizer', 'US', 'COVID-19', 'BNT162b2', 'Anvisa', 'Pfizer', 'first', 'Pfizer', 'third', 'COVID-19', 'Anvisa', 'AstraZeneca', 'UK', 'the University of Oxford', 'UK', 'Sinovac (China', 'CoronaVac', 'China', 'Germany', 'Shanghai', 'Fosun Pharmaceutical (China', 'China', 'COVID-19', 'BNT162b2', 'the Jiangsu Provincial Center for Disease Control and Prevention', 'China', '94.5%', 'Pfizer', 'US', 'The US National Institutes of Health', 'NIH', 'National Institute of Allergy and Infectious Diseases', 'NIAID', 'fourth', 'the Adaptive COVID-19 Treatment Trial', '1,500', 'nearly 100', 'US', 'ACCT-4', 'Veklury', 'Gilead Sciences', 'US', 'Velkury', 'only two', 'NIH', 'ACTT-2', 'UK', 'NIH', 'around 3–4 months', 'United States', 'The US FDA', 'Veklury', 'ACTT-1', 'FDA', 'WHO', 'SOLIDARITY', 'WHO', 'ACTT-1', 'SOLIDARITY', 'SOLIDARITY', 'ACTT-1', 'FDA', 'FDA', 'Argentina', 'COVID-19', 'COVID-19', 'the New England Journal of Medicine', 'Reuters', 'Argentina', '333', 'COVID-19', 'day 30', '11%', '11.4%', 'Ventura Simonovich', 'the Hospital Italiano de Buenos Aires', 'Dutch', 'the Leiden University Medical Center', '1Day', 'US', '240', 'Dutch', 'LUMC', 'Meta Roestenberg', '1Day', 'Sooner', 'UK', 'January 2021', 'Dutch', 'Bangladesh', '68 million', 'COVID-19', 'Gavi', 'the Vaccine Alliance', 'first', 'February 2021', 'USD1.62', 'USD2.00', 'the Advance Market Commitment for COVID-19 Vaccines', 'AMC', 'Bangladesh', 'one', '92', 'Bangladesh', 'National Vaccine Deployment Plan', 'COVID-19', 'Gavi', 'Canada', 'US', 'Eli Lilly', 'US', 'Canadian', '26,000', 'COVID-19', 'USD32.5 million', 'Canadian', 'AbCellera', 'Canada', 'three-month', 'December 2020 to February 2021', 'monthly', 'FDA', 'EUA', '9 November', 'Canadian', 'last week', 'COVID-19', 'Panama', 'Panama', '3 million', 'BNT162b2', '2021', 'Pfizer', 'US', 'BNT162b2', '20 November', 'FDA', 'EUA', '90%', 'COVID-19', '95%.Thailand', 'Thai', 'AstraZeneca/Oxford University’s', 'Coconuts Bangkok', 'Traisulee Traisornranakul', 'at least 70%', 'Thailand', 'mid-2021', 'Anutin Charnvirakul', 'Thailand', 'Pfizer', 'Moderna', 'COVID-19', 'Turkey', 'Fahrettin Koca', 'Turkey', 'yesterday', 'Chinese', 'Sinovac', '50 million', 'COVID-19', 'CoronaVac', 'three', 'December, January', 'February', 'Koca', 'Turkey', 'Brazil', 'Indonesia', 'China', 'Bangladesh', 'Chile', 'Philippines', 'United States', 'New York', 'COVAXX', 'COVID-19', 'more than 140 million', 'USD2.8 billion', 'Brazil', 'Ecuador', 'Peru', 'Taiwan', 'September', 'Diagnosticos da America SA', 'Dasa S.A.', 'Brazil', 'Brazil', 'COVAXX', 'United Biomedical', 'US', 'Gavi', 'COVID-19', 'Taiwan', 'the University of Nebraska Medical Center', 'UNMC', 'US', 'US', 'Maersk', 'Denmark', 'between the end of 2020', 'the first quarter of 2021', 'Asia', 'Latin America', 'the United States', 'COVAXX', 'COVAXX', 'Mei Mei Hu', 'COVID-19', 'Hu', 'first', 'today', 'Anvisa', 'Pfizer', 'COVID-19', 'BNT162b2', 'here)United Kingdom:', 'UK', 'COVID-19', 'Venezuela', 'PAHO', 'NIH Adaptive', 'COVID-19', 'NIH', 'ACTT-1', 'Veklury', 'EUA', 'Veklury', 'ACTT-1', 'Veklury', '15 to 10 days', 'ACTT-2', 'Veklury', 'one day', 'the coming weeks', 'Eli Lilly', '35%', 'COVID-19', 'United States', '9 October 2020', 'Lilly', '35%', 'COVID-19', 'Veklury', 'Olumiant', '5', '6', '60% and', '43%', 'five', 'six', 'Veklury', 'ACTT-1', '5', '6', 'WHO', 'SOLIDARITY', 'COVID-19', '28-day', 'WHO', '16 October 2020', 'Solidarity', 'Veklury', '20 November 2020', 'Roche', 'COVID-19', 'Veklury', 'FDA', 'Veklury', 'NIH', 'SOLIDARITY', 'FDA', 'WHO', 'Veklury', 'NIH', 'Adaptive', 'COVID-19', 'the research institute', 'Veklury', 'FDA', 'the National Expanded Access Treatment Protocol', 'the Mayo Clinic', 'US', 'United States', '24 August 2020', 'FDA', 'EUA', 'COVID-19', 'US', 'US', 'COVID-19', 'thousands', 'US', 'NIH', 'COVID-19', 'COVID-19', 'COVID-19', 'OncoImmune', 'US', 'Relief Therapeutics', 'Switzerland', 'United Kingdom', '17 June 2020', 'UK', 'COVID-19', 'United States', '24 November 2020', 'Merck &', 'Co', 'COVID-19', 'OncoImmune', '25 November 2020', 'EU', 'sixth', 'APA', 'Moderna', 'Sinopharm', 'China', '2020', 'IHS Markit Inc.', 'November 11', 'Virginia International Gateway', 'Portsmouth', 'Virginia', 'Delhi Metropolitan Magistrate', '14 days', 'Jawaharlal Nehru University', 'Umar Khalid', 'Delhi', 'February', 'National Rail', 'Gospel Oak', 'London', 'up to 45 minutes', 'approximately 10:00', 'Crewe', 'West Coast', 'CrossCountry', 'East Midlands Railway', 'London Northwestern Railway', 'Northern and Transport for Wales', '12:00', 'Stratford', 'Birmingham Moor Street', 'Chiltern Railways', 'London Northwestern Railway', '19:30', 'Bangladeshi', 'Wednesday night', 'Rohingya', 'Cox’s Bazar', 'Bhasan Char', 'about 20 miles', 'Chittagong', 'the Bay of Bengal', '11', 'Thursday', 'Chittagong', 'Between 1,000 and 3,000', 'up to 100,000', 'between now and April', 'Rohingya', 'Bhasan Char', 'Approximately 300', 'Rohingya', 'earlier this year', 'Bhasan Char', 'Cox’s Bazar', 'October', 'Chittagong', 'More than 700,000', 'Cox’s Bazar', '2017', 'Myanmar', 'Everstream Analytics', 'Liguria Region', 'Storm Alex', 'Ventimiglia', 'the Roya River', 'Genoa', 'Saturday', 'October 1', 'German', 'the Port of Hamburg', 'Germany', 'the afternoon of September 30', 'Argentina', 'today', '3 December', 'Buenos Aires', 'the Association of Municipal Doctors', 'the Federation of Professionals', 'between 09:30 an 14:00', 'the Gobierno de la Ciudad de Buenos Aires', 'Parque Patricios', 'the Multisectoral Health', '24-hour', 'Cordoba', 'Paz', 'Olmos Shopping', 'around 18:00', 'October 1', 'Dow Inc.', 'U.S', 'the U.S. Gulf Coast', 'Texas', 'Louisiana', 'Dow Inc.', '340,000 tonnes', 'Freeport', 'Texas', 'Dow Inc.', 'Intelligence', 'October 23', 'the Maritime Union of Australia', 'DP World Fremantle', 'two-hour', 'October 26', 'November 9', '23:00 to 01:30', 'November 8', 'earlier in the day', 'December 9', 'the DP World Terminal', 'the Port of San Antonio', '12:00', 'December 6', 'December 3', 'October 16', '8,600', 'Lotus', 'Singapore', 'October 15', 'October 6', 'Paulo Guedes', 'Brazilian', 'Correios, Eletrobras', 'the Port of Santos', 'the Pre-Salt Oil', 'the end of 2021', 'Eight', 'Cauca', 'Argelia', 'Balboa', 'El Tambo', 'Pucaré', 'Peraltá', 'José María Becerra', 'Yeerongpilly', 'Coopers', 'Brisbane', 'up to 60 minutes', 'Beenleigh', 'Gold Coast', 'Ras Al Khor Industrial Area 2', 'Dubai', 'Sunday', 'Siraj Co Aluminium Company', 'October 23', 'Durban MPT', 'the Port of Durban', 'South Africa', '10:30', 'October 23', 'Chinese', 'October 16', 'Greenwich', 'more than 30', 'this year', '160,000', 'USD 23,040', 'EUR', '19,520', 'Extinction Rebellion', '11', '12 December', '11 December', 'Elizabeth Street Mall', 'Hobart', '12:00', 'Melbourne', '12:30', '12 December', '12 December', 'Newcastle', '09:00', 'the Sydney Town Hall', '12:00', '12 December', '108', 'the Port of Durban', 'South Africa', 'December 3', 'two', 'December 6', 'two', 'December 7', 'November 30', 'Etab', 'November 27', 'Jeddah', 'the Balck Sea', 'European', 'Ireland', 'Germany', 'France', 'Italy', 'Belgium', 'Netherlands', 'the United Kingdom', 'COVID-19', 'London', 'England', 'France', 'UK', '48 hours', 'December 21', 'EU', 'December 21', 'Surrey', 'London', 'this afternoon', '19 November', 'Tesco', 'Jeddah Port', 'British', 'Yemeni', 'Houthi', 'recent weeks', 'Saudi', 'December 14', 'Hafnia', '00:40', 'Jeddah', 'Saudi Aramco', 'Houthi', 'Everstream Analytics', 'Santos Dumont II', 'Lagoa Santa', 'Monday', 'Lagoa Santa', 'approximately 32 kilometers', 'Belo Horizonte', 'the Saudi Arabian Port of Jeddah', 'Monday, December 14', 'Saudi', 'British', 'Singapore', 'BW Rhine', 'approximately 12:40 AM', 'Jeddah', 'Jeddah', 'December 12', 'over 65,000 tons', 'Aramco', 'Yanbu', 'the Kingdom', 'the United Kingdom Marine Trade Operations', 'Saudi Arabia’s', 'the Red Sea', 'fourth', 'Saudi', 'a month', 'Shuqaiq', 'Maltese', 'November 25', 'Houthi', 'Saudi', 'December 14', 'Houthi', 'Shia', 'Saudis', 'the Red Sea', 'the Bab al Mandeb Strat', 'the Red Sea', 'the Persian Gulf', 'the coming days', 'Western Australia State', 'the end of Thursday', 'Port Hedland', 'Federal Reserve', 'Fed', '10 November', 'the Federal Reserve', 'the spring', 'NGFS', '80', 'NGFS', '2017', 'Abu Dhabi', 'Brazil', 'Canada', 'Indonesia', 'Russia', 'South Korea', 'Fed', 'NGFS', 'US', 'NGFS', 'the United States', 'six-month', 'US', 'Fed', 'Jerome Powell', 'Fed', 'one', 'Financial Stability Report', '9 November', 'Fed', 'US', 'US', 'Fed', 'United States', '10 November 2020', 'Biden', 'Republican', '2020', 'IHS Markit Inc.', 'December 15', 'the Port of Alexandria', 'six hours', '16:00', 'December 14', 'Gosport Street', 'Hemmant', 'Brisbane', 'Wednesday', 'afternoon', 'at least 50', 'days', 'the night', 'December 14', 'the Baltic Shipyard', 'St. Petersburg', 'The Baltic Shipyard', 'the Russian Navy', 'December 22', '400', 'Eagle Court', 'Swedesboro', 'New Jersey', '19:30', 'December 21', 'October 31', 'Homedale Road, Bankstown', 'Sydney', 'Australia', 'the afternoon', 'October 31', 'October 14', 'Karachi', 'Pakistan', 'the afternoon', 'October 13', 'two hours', 'several million', 'November 11', 'around 16:30', 'November 11', 'Aluminum Daesan', 'Daesaek', 'Daesan', 'Chungnam City', 'about one hour', 'Daesan', 'Hyundai Chemical', '20:44', 'October 18', 'Daesan', 'Seosan city', 'Hyundai Chemical', 'the Daesan Petrochemical Complex', 'eight', 'twelve', 'Hyundai Chemical Co Ltd', 'November 5', 'Silence', 'the Municipality of Molins de Rei', 'Barcelona', 'Spain', '21:00', 'November 4', 'two', 'May 18', 'the Molins de Rei', 'SEAT', 'November 8', 'November 7', 'Shawo Village', 'Qinzhou', 'Guangxi', 'November 11', 'Tianhe District', 'Guangzhou', 'Guangdong', 'Korean', 'October 21', 'North Ulsan', '15 minutes', 'October November 2', 'Busanjin', 'Korea', '11:00', 'November 2', 'October 1', 'Xifu', 'Wuri', 'Taichung', '02:17', 'about 05:00', 'about 200 square meters', 'November 17', 'Karachi', 'Pakistan', 'the afternoon of', 'November 16', 'Chinese', 'November 11', 'Zhuji Street', 'South Gate New Street', 'the Tianhe District', 'Guangzhou', 'China', 'About 150 square meters', 'One', 'November 20', 'Al Nakheel', 'Jeddah', 'three', 'Falcon St', 'Crows Nest', 'Sydney', 'October 9', 'around 5:45', 'November 9', 'Makati', 'Metro Manila', 'Philippines', 'November 7', '2 hours', 'Everstream Analytics', 'Victoria Road', 'Guernsey', 'this afternoon', '24 November', 'Australian', 'Adelaide', 'Orsmond Street', 'Port Road', 'November 6', 'Moinho Paulista', 'the Port of Santos', 'One', 'Rua João Pessoa', '536', 'October 19', 'Cahmra Chowrangi', 'Kowrangi Industrial Area', 'Karachi', 'The International Monetary Fund', 'first', 'Somalia', 'three-year', 'November', '2019', 'COVID-19', '2020', 'IMF', '30 November', 'USD10 million', 'the Extended Credit Facility', 'ECF', 'Somalia', 'first', 'the Heavily Indebted Poor Countries', 'Paris Club', 'Somalia', 'Somalia', 'IMF', 'Somalia', 'ECF', '2020', 'IMF', 'Somalian', 'COVID-19', 'Somalia', 'Markit', 'Somalia', 'an average 2.8%', 'annually', '2%', '2020', 'Somalia', 'the past year', '2020', '2021', 'COVID-19', 'Somalia', 'Somalia', 'IMF', 'ninth', 'National Development Plan', 'COVID-19', '2019', 'USD230 million', 'USD183 million', '2018.Somalia', '2021', '29 October 2020', '2021', '2021', 'HIPC', 'Somalia', '2020', 'Paris Club', 'Spain', 'the United States', 'Norway', 'the United Kingdom', 'IMF', 'the Kuwait Fund for Development', 'the Saudi Fund for Development', 'the Abu Dhabi Fund for Development', 'Paris Club', 'March', '2020', 'IHS Markit Inc.', 'De Lijn', 'Antwerp', 'Bruges', '24-hour', '9 October', 'Everstream Analytics', 'Colombia', 'Hurricane Iota', 'Cartagena', 'Antioquia', 'Choco', 'Hurricane Iota', 'approximately 175km', 'Isla de Providencia', 'Australian', 'the North West Coastal Highway', 'Port Hedland', 'Port Hedland', 'Roebourne', 'Ho Chi Minh City', 'today', '19 October', 'Malaysian', 'Tuesday 17 November', 'Pontian District', 'North Carolina', 'Friday', 'Tropical Storm Eta', 'more than nine inches', 'November 11-12', 'The National Weather Service', 'Alamance, Chatham', 'Durham', '3:45 PM', 'November 13', 'the Cape Fear', 'Neuse', 'Tar', 'the weekend', 'Interstate 95', '102', 'Johnston County', 'about 30 miles', 'Raleigh', 'at least 5:00 PM', 'Friday', 'I-95', 'Wilson', 'Interstate 85', 'Charlotte', 'the North Carolina Department of Transportation', 'Five', 'Thursday', 'Alexander', 'Burke, Catawba', 'Yadkin', 'Alexander County', 'about 65 miles', 'Charlotte', 'three', '31', 'Alexander County', 'Wake County', 'Raleigh', 'seven', 'two', 'hundreds', '143', 'the Charlotte Corvian Community School', 'more than 16,400', 'Dozens', 'Thursday', 'Eta', 'South Carolina', 'Virginia', 'York County', 'Virginia', 'Friday', 'U.S.', 'Friday', 'next week', 'Friday', 'morning', 'the coming days', 'Saturday', 'Sunday', 'the weekend', 'November 30', 'DP World Southampton', 'November 29', 'November 30', 'December 24', 'four', 'at least 18', 'Pakistan', 'Keamari', 'Karachi', 'the Ziauddin Hospital', 'the past week', 'this past week', 'mid-February 2020', '14', 'more than 250', 'Keamari', 'February', 'the Sindh Environmental Protection Agency', 'SEPA', 'Karachi University’s International Centre for Chemical and Biological Sciences', 'ICCBS', 'the February incident', 'Keamari', 'the coming days', 'February', 'the Pakistan State Oil', 'the Port of Karachi', 'October 14', 'four', 'Pakistan', 'October 14', 'Faisalabad', 'Karachi', 'three hours', 'November 3', 'Francisca', 'Rotterdam', '33', '32', '1', 'the North Sea', 'Scottish', 'October 31', 'Rotterdam', 'November 3', 'November 10', 'P3 Transportation', 'LLC', 'chapter 7', 'the New Jersey Bankruptcy Court', 'P3 Transportation', '0-50,000 USD', '0-43,000', 'EUR', '100,000-500,000 USD', '85,000-425,000', 'EUR', 'October 12', 'at least six', 'Kotri', 'Pakistan', '05:30', 'October 10', 'Karachi', 'Lahore', 'second', '11:00', 'the same day', 'October 14', 'Ghotki', 'Pakistan', 'Karachi', 'Faisalabad', 'December 15', 'Crescent Road', 'Buchanan Street', 'Charleston', 'West Virginia', '18:15', 'December 15', 'November 19', 'Fresh Start Transportation Corp.', 'chapter 7', 'November 18', 'California Central Bankruptcy Court', 'Start Transportation Corp', 'San Bernardino', 'California', 'Los Angeles', 'Taichung Port', 'Taian', 'October 19', 'December 14', 'Honda', 'Swindon', 'December 9', 'U.K.', 'Felixstowe, Southampton', 'London', 'recent weeks', 'second', 'COVID-19', 'Honda Motor Company, Ltd.', 'Japanese', 'HUY', 'Binh Dinh', 'the South China Sea', 'December 10', '3,000 tons', 'Ho Chi Minh', 'Haiphong', 'November 27', 'V. O. Chidambaranar Port Trust', 'Thoothukudi', 'Tamil Nadu', 'India', 'Verdi', 'Amazon', 'Germany', 'Monday night', 'November 30', 'Tuesday night', 'December 1', 'Friday', '500', 'Amazon', 'three-day', 'last week', 'Amazon', 'Saturday, November 28', 'Hochbahn', 'VHH', 'Verdi', '24-hour', 'Hamburg', 'German', 'November 3', 'Gesamthafenbetriebsverein', 'Lande Bremen e.V.', 'Lande Bremen e.V. provides', 'the Ports of Bremen and Bremerhaven', 'Germany', 'Japanese', 'coast guard', 'the Senkaku Islands', 'Chinese', 'More than 1,100', 'Chinese', 'Senkakus', '2020', 'early today', '23 December', 'Senkakus', 'Tokyo', 'Japanese', 'Beijing', 'Diaoyu', 'October 2', '12', 'Pakistan', 'the Pakistan Democratic Movement', 'PDM', 'Imran Khan', 'Pakistan', 'Tehreek', 'PTI', '2018', 'PDM', 'PDM', 'October 5', 'first', 'October 11', 'Quetta', 'PDM', 'PTI', 'PDM', 'Quetta', 'Pakistan', 'September 28', 'Shehbaz Sharif', 'Pakistan Muslim League-Nawaz', 'Lahore', 'Shehbaz Sharif', 'October 3', 'Lahore', 'October 9', 'Punjab', 'Shehbaz Sharif', 'October 2018', 'Punjab Province', 'Nawaz Sharif', 'three', 'July 2017', 'Supreme Court', 'two', 'London', 'last November', 'PML-N', 'Khan', 'Khan', 'November 2019', 'three', 'November and December', 'Islamabad', 'January 2021', 'Quetta', 'October 11', 'the Montefiore New Rochelle Hospital', 'two-day', 'Guion Pl', 'Van Guilder Ave', 'The New York State Nurses Association', 'October 29', 'Hapag-Lloyd', 'St Petersburg', 'Ust-Luga', 'Russia', 'December 1', 'December 2', 'Hapag-Lloyd', 'Atlantic Loop 6', 'weeks 53', '3', 'Week 53', '2020', 'Jan 1, 2021', 'La Spezia', 'Jan 3, 2021', 'Barcelona', 'Jan 6, 2021', 'Valencia Jan 7, 2021', 'Week 3', 'New York', 'Jan 19, 2021', 'Norfolk', 'Jan 21, 2021', 'Savannah Jan 24, 2021', 'Miami', 'Jan 26, 2021', 'October 30', 'Hapag-Lloyd', 'East Asia', 'November 26 - January 27', 'AN2', 'November 26 - January 31', 'AN1', 'Yantian', 'Hong Kong', 'Shanghai', 'Ningbo', 'Lazaro Cardenas', 'Shanghai', 'Xiamen', 'Shekou', 'Hong Kong', 'Ningbo', 'Lazaro Cardenas', 'Callao', 'San Antonio', 'San Antonio', 'Angamos', 'December 4', 'Hapag-Lloyd', 'Nordic Hong Kong', 'COVID-19', '14-day', 'Hong Kong', 'the Conosur Service', 'Guayaquil', 'Arica', 'San Antonio', 'Bahia Blanca', 'Rio de Janeiro', 'Hapag-Lloyd', 'Guayaquil', 'Arica', 'Conosur', 'Rio de Janeiro', 'Conosur', 'October 26', 'German', 'Hapag-Lloyd', 'North America', 'North American', 'Asia', 'Hapag-Lloyd', 'Asian', 'Minneapolis', 'St. Paul', 'Hapag-Lloyd', 'Japan', 'Indonesia', 'Hong Kong', 'Taiwan', 'Malaysia', 'November 18', 'Dover', 'Ensenada', 'November 12', 'the Panama Canal', 'Long Beach', 'Tahiti', 'Fiji', '200 kg', 'USD 3 million', '2.52 million', 'the Mexican Navy', 'Australian', 'the Port of Brisbane', 'Wednesday', 'morning', 'two', '400 meter', 'the Indian Meteorological Department', 'IMD', 'second', 'four', 'Tamil Nadu', 'Kerala', 'Andhra', 'December 1-4', 'December 2-3', 'Kanniyakumari, Ramanathapuram, Sivagangai', 'Tenkasi', 'Thoothukudi', 'Tirunelveli', 'Tamil Nadu', 'Alappuzha', 'Kollam', 'Pathanamthitta', 'Thiruvananthapuram', 'Kerala', 'more than eight inches', 'Australian', 'Sydney', '90 kilometers per hour', 'over 100', 'the previous 24 hours', 'Mackeral Beach', 'Sydney', '18', 'the end of the week', 'at least 31,000', 'Connecticut', 'Monday', '30 November', 'Litchfield', 'Middlesex', '22:00', 'New Haven', 'New London', '19:00', 'Hartford', 'Tolland', 'Windham', '01:00', 'Tuesday', '1 December', 'One', '40 to 50 miles per hour', '60-80 kilometers per hour', 'November 4', 'the High Court of Justice', 'Melars Group Limited', 'October 28', 'Melars Group Limited', 'Sliema', 'Malta', 'the Sunshine Skyway Bridge', 'Saint Petersburg', 'Manatee County', 'Monday', 'morning', 'Tropical Storm Eta', 'Gulf of Mexico', 'October 8', 'between 04:00 and 16:00', 'October 8', 'the Port of Felixstowe', 'October 8', 'between 06:00 and 17:00', 'October 8', 'the Port of Rotterdam', 'November 30', 'the Port of Antwerp', 'UK', 'Antwerp', 'December 8', 'the Port of Antwerp', 'UK', 'Antwerp', 'Hitachi', 'three days', 'Abrantes', 'December 14', '90 percent', 'Hitachi, Ltd.', 'Japanese', 'Chiyoda', 'Tokyo', 'Japan', 'the Hong Kong Observatory', 'HKO', 'Typhoon Warning Signal', 'second', 'five', 'Hong Kong', 'at least the morning', 'October 23', 'October 13', 'the Hong Kong Observatory', 'HKO', '8', '39 miles per hour', 'north-east', 'Hong Kong', 'October 13', 'Wednesday', 'Hong Kong', 'November 22', 'Hong Kong', 'Singapore', 'Air Travel Bubble', 'ATB', 'one', '200', 'December 7', 'daily', 'two', 'Hong Kong', 'Singapore', 'the past 14 days', 'COVID-19', '72 hours', 'Hong Kong', 'Singapore', 'Singapore', 'TraceTogether COVID-19', 'Hong Kong', 'Singapore', 'at least two weeks', 'November 23', 'Hong Kong', 'China', 'Guangdong Province', 'Macao', 'Hong Kong’s', 'Hong Kong', 'COVID-19', 'Guangdong', 'Macao', '72 hours', 'Hong Kong', 'Hong Kong', 'Guangdong', 'Macao', 'the previous 14 days', 'Hong Kong’s', '3,000', 'the Shenzhen Bay Port', '2,000', 'Hong Kong', 'Hong Kong', 'Guangdong', 'Macao', 'Hong Kong', 'COVID-19', 'Hong Kong-', 'first', 'Hong Kong', 'Singapore', 'COVID-19', 'Guangdong', 'Hong Kong', 'Macao', 'Singapore', 'COVID-19', 'the Houston Ship Channel', 'December 12', 'November 11', 'the Houston Ship Channel', '8 hours', '08:00', 'October 23', 'the Houston Ship Channel', '07:00 to 17:00', 'October 23', 'Light 49 to 54', 'Vessels', 'October 8', 'the Houston Ship Channel', 'Hurricane Delta', 'the Houston Ship Channel', '13:25', 'December 3', 'Monday', 'Yemen', 'Houthi', 'Saudi Aramco', 'Aramco’s North Jeddah Bulk Plant', 'Kingdom', 'around 4:00 AM', 'The United States', 'Jeddah', 'Security Alert', 'November 23', 'hours', 'Riyadh', 'the G20 Leaders’ Summit', 'US', 'Houthis', 'next month', 'Houthis', 'US', 'American', 'Monday', 'Washington', 'Houthis', 'US', 'Saudi Arabia', 'Donald Trump', 'Saudi', 'Iranian', 'the White House’s', 'Tehran', 'Trump', 'its final weeks', 'Yemen', 'Iran', 'Yemeni', 'Yemen', 'Sana’a', 'Monday', 'Houthi', 'Saudi Arabia', 'Kingdom', 'Saudi', 'Saudi Arabia', 'New York', 'Andrew Cuomo', '18', 'the Hudson Valley', 'Capital Region', 'Thursday', '17th of December', 'Albany', 'Chenango', 'Delaware', 'At least 132,000', 'Massachusetts', '233,000', 'New York', '36,000', 'Rhode Island', '16,000', 'Connecticut', 'the next few hours', 'Hundreds', 'Coles', 'one', 'Sydney', '2023', 'hundreds', 'Taipei', 'today', '25 October', 'China', '12', 'Hong Kong', '12', 'the coming days', 'October 16', 'Hyosung Vina Chemicals Co., Ltd.', 'PP', 'the Cai Mep Industrial Zone', 'Vietnam', 'early October', 'mid to late October', 'December 21', 'Hyundai Steel', 'Ulsan', 'December 21-28', 'Antwerp', 'around 150', 'Antwerp Port', 'Flemish', 'Cartagena', 'Bolívar', '70%', 'Iota', 'Panama City', 'Balboa Avenue', 'metro', '3', 'fourth', 'the Panama Canal', 'Colon', 'the Colon Maritime Authority', 'AMP', 'COVID-19', 'Coquitlam', 'the Pitt River Bridge', 'the Canadian Pacific Railyard', 'West Coast Express', 'Vancouver', 'Cristobal', 'Colón, Colón department', 'the National Police', '776', 'Ecuador', 'Spain', 'East Vancouver', 'Clark Drive', 'Venables Street', 'Coastal GasLink', 'British Columbia', 'Guayaquil', '991kg', 'Russia', 'Guayaquil', 'the Anti-Drugs Police Unit', '1.4 tonnes', 'Belgium', 'Hamburg', 'Verdi', 'between 12 and 19', 'December 2020', 'Hudson County', 'New Jersey', 'US Postal Service', 'USPS', 'Jeddah', 'the Ministry of Energy', 'Houthi', 'Kanchpur', 'Hathazari', 'Chittagong', 'Karachi', 'Sindh', 'hundreds', 'National Trade Union Federation', 'Workers Union Gadani', 'Gadani', 'Khalifa Port', 'Abu Dhabi', 'the South Quay', '37,000 square meter', 'Khanh Hoa Mountain', '36', 'Ho Chi Minh City', 'nine', 'Los Encuentros', 'Yatzaza', 'canton', 'MERNNR', \"Lundin Gold's\", 'Fruta del Norte', '15-day', '3,000 tonnes', 'Guayaquil', 'Manzanillo', 'Colima', 'National Anti-kidnapping', 'Italian', 'Francisco Villa', 'three', 'early November', 'Mersin', 'Turkey', 'third', 'Kanuni', 'the Black Sea', 'Mongla', 'Bangladesh Coast Guard', '16', 'Indian', 'Fairway Boya', 'the Bay of Bengal', 'Quang Ninh Province', 'two', 'Chinese', 'Vietnam', 'the 14 days', 'Ha Long Town', 'Chinese', '14 days', 'San Antonio Port', 'San Antonio', 'Valparaíso', 'three tonnes', 'Mexico', 'Santos', 'São Paulo', 'the Federal Police', 'Evoque', 'one', 'First Command of', 'Sydney', \"Criminal Groups Squad's\", 'Strike Force Raptor', 'two', 'USD590,000', 'Taipei', 'the Legislative Yuan', 'the Chinese Nationalist Party', 'KMT', 'Shen Chih-hwei', 'US', 'Rio de Janeiro', 'the Federal Police', '380kg', 'Valencia', 'Spain', 'Tulcán', 'Carchi', '2.5 tonnes', 'Quito', 'Guayaquil', 'Vancouver', 'Coastal GasLink', 'British Columbia', 'Vancouver', 'hundreds', 'Grandview Highway', 'Coastal GasLink', 'Vancouver', 'Metro Vancouver', 'three', 'the City of Vancouver', 'Coastal GasLink', 'British Columbia', 'Vaughan', 'over 200', 'Macmillan Yard', 'Coastal GasLink', 'Hamilton', 'London', 'New York', 'Michigan', 'Yokosuka', 'Tokyo', 'Japan', 'Kishi Nobuo', 'the Maritime Operations Center', 'the Japan Maritime Self-Defense Forces', 'MSS', 'Yuen Long', 'about 100,000', 'N95', 'East New York Station', 'Brooklyn', 'New York City', 'Monday', '21 December', 'Metropolitan Transportation Authority', 'MTA', 'Jamaica', 'Atlantic Terminal', 'October 5', 'Kota Kinabalu', 'Sabah', 'Sipitang', 'Tenom', 'Kuala Penyu', 'Beaufort', 'Keningau', 'Kota Kinabalu', 'Tuaran', 'Kota Belud', 'Kudat', 'Kota Marudu', 'the Tamparuli-Ranau', 'the west coast', 'Sabah', '48-hours', 'November 26', 'nine', 'Egypt', 'five', 'Egyptian', 'the Port of Alexandria', 'Port of Said', 'four', 'Egypt', 'US', 'Donald Trump', 'recent days', 'Chinese', 'The US State Department', '3 December', 'Communist Party of China', 'CPC', '6–7%', 'China', 'The same day', 'the US Department of Defense', 'four', 'Chinese', 'the “Communist Chinese Military Companies', '2 December', 'US Customs and Border Protection', 'the Xinjiang Production and Construction Corps', 'the Treasury Department', '31 July', 'Significance', 'Joe Biden’s', 'January 2021', 'Trump', 'China', 'Biden', 'US', 'China', 'Biden', 'Trump', 'Biden', 'January 2021', 'Chinese', 'CPC', 'Biden', 'Trump', 'Biden', 'China', 'US', 'North Korea', 'Iran', 'Hong Kong', 'Western', 'Biden', 'China', 'CCP', 'Chinese', 'US', 'Chinese', 'US', 'Biden', 'US', 'US', 'Europe', 'Asia', 'EU', 'Transatlantic Trade and Technology Council', 'Chinese', 'Chinese', 'US', '2020', 'IHS Markit Inc.', 'US', 'Donald Trump', 'recent days', 'Chinese', 'The US State Department', '3 December', 'Communist Party of China', 'CPC', '6–7%', 'China', 'The same day', 'the US Department of Defense', 'four', 'Chinese', 'the “Communist Chinese Military Companies', '2 December', 'US Customs and Border Protection', 'the Xinjiang Production and Construction Corps', 'the Treasury Department', '31 July', 'Significance', 'Joe Biden’s', 'January 2021', 'Trump', 'China', 'Biden', 'US', 'China', 'Biden', 'Trump', 'Biden', 'January 2021', 'Chinese', 'CPC', 'Biden', 'Trump', 'Biden', 'China', 'US', 'North Korea', 'Iran', 'Hong Kong', 'Western', 'Biden', 'China', 'CCP', 'Chinese', 'US', 'Chinese', 'US', 'Biden', 'US', 'US', 'Europe', 'Asia', 'EU', 'Transatlantic Trade and Technology Council', 'Chinese', 'Chinese', 'US', '2020', 'IHS Markit Inc.', 'Dutch', 'Amazonehaven', 'Rotterdam', 'Friday', 'Interior', 'Alicia Arango', 'USD137mn', 'Cartagena', 'Bolívar', 'Iota', 'Panama', 'Labour', 'Labour Development Doris Zapata', '27 November', '96,066', '282,000', '2019', 'the working day', 'March', 'the National Assembly', 'July', '31 December', 'the Federation of Commercial Associations', 'Federación de Cámaras de Comercio', '2021', 'around 85%', 'only 8%', 'the past eight months', 'USD100', 'the first few months of 2021', 'the National Union of Workers of Construction and Similar Industries', 'El Sindicato', 'de la', 'weeks', 'Panama City', 'early 2021', 'Protests', 'Cargo', '2020', 'IHS Markit Inc.', 'Jeddah Port Authority', 'December 14', 'December 13', 'around 15:00', 'the early hours', 'December 13', 'Jeddah', 'Monday', 'Indonesia', 'House of Representatives', 'The Confederation of Indonesia Trade Unions', 'Thursday', 'as many as five million', 'the months', 'Monday', 'Tuesday', 'COVID-19', 'up to 5,000', 'the House of Representatives', 'Jakarta', 'Monday', 'Tuesday', 'at least two', 'West Java', 'thousands', 'At least ten', 'Banten Province', 'Serang', 'Two', 'Indonesian', 'COVID-19', 'November 23', 'Kareem Junior', 'Datca Bay', 'November 20', 'Mersin', 'Larymna', 'October 28', 'Asia Raya', 'the Flores Sea', 'Makassar Sulawesi', 'East Nusa Tenggara', 'the afternoon', 'October 26', 'October 27', 'Odfjell Houston', 'Seabrook', 'Port Rd', 'Hwy 146', 'La Porte', 'November 4', 'the weekend', 'the Port of Antwerp', 'COVID-19', 'November 19', 'Pier 2, Port of Durban', '20:00', 'November 18', '20:30', 'Port of Durban', '22:00', 'October 22', '23:45', 'the same day', '202', '203', '03:00', 'October 23', '108 & 204', '03:30', 'October 23', 'October 8', 'Pier 1', 'October 7', '22:00', 'December 8', 'the Port of Southampton', 'between 01:00 and 08:00', 'French', 'October 25', 'France', '8', 'Le Havre', 'More than 150', 'More than 100', '20:00', 'October 24', 'French', 'Le Havre', 'Saturday', 'afternoon', 'Lipton', 'rue Maximilien Robespierre', 'Avenue 8 Mai 45', 'At least three', 'December 17', 'Gosport Street', 'Hemmant', 'Brisbane', 'December 16', 'Tottenham', 'London', 'Ferry Lane', 'the River Lea', 'Yasonna Laoly', 'Jakarta', 'Batam', 'Singapore', 'Dutch', 'November 15', 'BP', 'the Port of Rotterdam', 'D’Arcyweg', 'late November 14', 'Two', 'one', 'about 3 hours', 'November 10', 'LG Chemical', 'PBR', 'Daesan', 'November 10', '17km', 'Sydney', 'one', 'ATU', 'Tuesday, December 1', 'ATU', 'The United States', 'Port of Spain', 'John F Kennedy Airport', 'New York', '16 December', 'JetBlue', 'National Rail', 'London Overground', 'Surrey Quays', 'Clapham Junction', 'Wednesday', 'morning', 'third', '09:45', 'the United Kingdom', 'Canada', 'two', 'Brexit', '2300', 'GMT', 'December 31', 'Tuesday', 'the Trade Continuity Agreement', 'last month', 'Canada', 'House of Commons', 'Canada', 'January 1', 'UK', 'Canada', 'US', '$22.5 billion', '2019', 'London', 'Canada', 'fifth', 'third', 'Canada', 'Britain', '15th', 'Tuesday', 'British', 'EU', 'post-Brexit', 'UK', 'January 1', 'UK', 'EU', 'World Trade Organization', 'Western', 'Wednesday night', 'Britain', 'EU', 'COVID-19', 'Brexit', 'Saturday, December 26', 'approximately 50,000 gallons', 'the Los Cerritos Channel', 'three Hospital Corporation of America', 'COVID-19', 'the Los Robles Regional Medical Center', 'Thousand Oaks', 'the Riverside Community Hospital', 'the West Hills Hospital', 'ten days', 'Thursday, December 24', 'SEIU Local', 'three', 'COVID-19', 'West Hills', 'October 14', 'Lotte Chemical', 'MEG No.', '2', 'Daesan', 'October 14', 'Lotte Chemical', 'Daesan NC', '10 months', 'March 4', 'Lotte Chemical', 'December 7', 'the coming weeks', 'LPG tanker Sunny Bright', 'Panama Canal', 'the morning', 'December 19', 'Houston', 'Texas', 'December 20', 'Luzon', 'Hundreds', 'the Port of Batangas', 'Quezon', 'Atimonan', 'Lucena', 'Albay', 'Sorsogon', 'December 14', 'weeks 53 and 02', 'CAE', '12.28.20', 'CAE', 'Montreal', '13.01.21', 'December 30', 'Maersk', 'Elba', 'Suez', 'Egypt', 'Felixstowe', 'U.K.', 'Elba', 'Port of Algeciras', 'Spain', 'The United States', '5.1', '45 kilometers', 'San Antonio de los Cobres', '198.5 kilometers', 'roughly 01:06', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'The United States', '5.1', '69 kilometers', 'Sarangani', 'approximately 10:00', '112 kilometers', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'National Rail', 'Watford Junction', 'London Euston/Clapham Junction', 'Friday', '4 December', 'West Coast', 'London Northwestern Railway', 'Southern', 'up to 90 minutes', 'London', 'at least 16:00', 'October 6', 'CSX', 'Water and Renwick', 'Newburgh', 'New York', '12:40', 'October 6', 'the Jeddah Port Authority', 'early December 14', 'approximately 1500 hours', 'Saudi', 'Jeddah', 'Pakistani', 'Karachi Port', 'this evening', '28 December', 'number 11', 'Maryland', 'Virginia', 'North Carolina', 'Keheliya Rambukwella', 'Port City', 'Chinese', 'the Federal Public Ministry', 'Companhia Docas', 'the State of São Paulo', 'the Port of Santos', 'November 16', 'Mentari', 'Crystal', 'Teluk Lamong', 'around 21:30', 'November 15', '137', 'the Surabaya West Shipping Route', 'Tuesday', 'the Ministry of Energy', 'MMG Ltd’s', 'Las Bambas', 'Apurímac', 'Peru', 'the Southern Runway', 'Velille', 'about 125 miles', 'Las Bambas', 'mid-December', 'about US $360,000', 'MMG Ltd', 'COVID-19', 'Minem', 'the Peruvian National Police', 'the Cusco Public Order Prosecutor’s Office', 'December 27', 'MMG Ltd', 'Las Bambas', 'Hong Kong', 'MMG Ltd', 'Las Bambas', '95 days', 'the past year', '2020', 'more than ten percent', 'October', 'the North Jersey Coast Line', 'Woodbridge', 'today', '24 November', 'the Woodbridge Station', 'New York Penn Station', 'South Amboy', 'South Amboy', 'Metropark', 'Everstream Analytics', 'December 18', 'the Port of New York', 'New Jersey', 'Maher', 'between 06:00 and 08:00', 'December 18', 'late December 16', 'the week', 'Dutch', 'MSC', 'Port of Rotterdam to Port of Zeebrugge', 'December 17-18', 'ECT', 'Rotterdam', 'the Port of Hamburg', 'Saturday, December 19', 'British', 'Boris Johnson', 'COVID-19', 'approximately 70 percent', 'The World Health Organization', 'COVID-19', 'COVID-19', 'England', 'London', 'Tier 4', 'Europe', 'Germany', 'the Netherlands', 'France', 'Switzerland', 'UK', 'Europe', 'VUI-202012/01', 'Denmark', 'Belgium', 'Netherlands', 'British', 'COVID-19', 'Royal Mail', 'UK', 'Europe', 'Germany', 'UK', 'the Republic of Ireland', 'The European Union', 'December 21', 'daily', 'UK', 'daily', 'UK', 'September', 'mid-November', 'England', 'the coming days', 'weeks', 'UK', 'daily', 'UK', 'the coming weeks', 'UK', 'only some 19 percent', 'daily', 'UK', 'Tier 4', 'UK', 'November 3', 'Geraldton', 'Fremantle', 'Indonesia', 'Near Barcelona', 'Badalona', 'some 200', 'at least two', 'the Tanjung Pelepas Port', 'Gelang Patah', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', 'Johor', '100kg', 'Malaysia', 'Indonesia', 'New Jersey', 'Phil Murphy', '2:00 PM', 'today, December 16th', 'winter', '1:00 PM', 'today', '1:00 PM', 'December 16th', 'CDL', 'I-78', 'Pennsylvania', 'I-95', 'New Jersey Turnpike', 'I-80', 'Pennsylvania', 'I-95', 'New Jersey Turnpike', 'I-295', 'NJ Route', '138', 'I-280', 'I-80', 'I-95', 'New Jersey Turnpike', 'NJ Route', '440', 'the New York State', 'I-195', 'the Scudders Falls Bridge', 'Pennsylvania', 'Route 440', 'the Outerbridge Crossing', 'New Jersey Turnpike', 'Sydney', 'Hawkesbury', 'Blue Mountains', 'New South Wales', 'the upcoming days', 'May 9', 'COVID-19', 'Greater Sydney', 'Wollongong', 'Central Coast', 'the Blue Mountains', 'May 17', 'Hasan', 'Sierra Leone', 'the Gulf of Aden', 'Nishtun', 'the early hours of Saturday, December 5', 'Salalah', 'Oman', 'November 4', 'Port of Ho Chi Minh', 'Port of Qingdao', 'this week', 'Nov 16 – Nov 20', 'December 15', 'the Port of Shanghai', 'Waigaoqiao', '11:00', 'December 14', 'Bocas del Toro', 'the National Aero-Naval Service', 'Senan', 'around 2 tonnes', 'Senan', 'four', 'October 12', 'up to six inches', '15 cm', 'Georgia', 'Virginia', 'the coming days', 'Delta', 'Up to three inches', '8 cm', 'Alabama', 'Colombia', 'Hurricane Iota', 'Cartagena Province', 'Santander Province', 'Santa Catalina', 'Providencia', 'Magdalena', 'Cauca', 'Atrato', 'San Juan', 'Meta', 'Three', 'six', 'the autumn of 2020', 'Northern Territory', 'Sydney', 'COVID-19', 'Northern beach', '14-day', 'Sydney', 'Blue Mountains', 'Central Coast', 'Illawarra', 'the Alexandria Port', 'Monday', '14 December', 'Portugal', 'the morning', 'December 26', 'Algeciras', 'Spain', 'Port of Wilhemshaven', 'Germany', 'MSC', 'Felixstowe', 'Rotterdam', 'Sri Lanka', 'Suez', 'Felixstowe', 'U.K.', 'December 10', 'Ocean Network Express', 'Xiamen', 'Chinese', 'December 1', 'Ocean Network Express', 'South China', 'Fujian', 'January 5', '2021-February', '2021', 'the Chinese New Year', 'COVID-19', 'South China', 'Hainan', 'Guangxi', 'Pearl River Delta', 'Dongguan', 'Guangzhou', 'Huangpu', 'Huizhou', 'Foshan', 'Jiangmen', 'Sanshui', 'Shantou', 'Zhongshan', 'Zhuhai', 'Zangjiang', 'Fujian', 'Xiamen', 'Fuzhou', 'Fuqing', 'Quanzhou', 'Anamur', 'Mersin province', 'Turkish Coast Guards', '19', 'Brazilian', 'the Port of Santos', 'Tuesday', '24 November', 'the Alemoa Pier', 'Lake Victoria', 'Homa Bay', 'Kenya Coast Guard Service', '20', 'Manila', \"the Philippine Navy's\", 'BRP', 'Conrado Yap', 'PS-39', 'two', 'South Korean', 'the Republic of Korea Navy', 'ROKN', 'February 9', 'UK', 'Felixstowe,', 'Southampton', 'London Gateway', 'Hapag-Lloyd', 'North America', 'the United Kingdom', 'UK', 'Felixstowe, Southampton', 'London Gateway', 'Canadian', 'Vancouver Island', 'Tuesday', 'morning', 'Port Alice', 'Jeune Landing', 'Zeballos', 'Barr Creek', 'Winter Harbour', 'Quatsino', 'BC Hydro', 'tomorrow', 'December 2', 'OOCL', '350', '290', 'EUR', 'west coast', 'Long Beach', 'CA', 'Los Angeles', 'CA', 'Oakland', 'CA', 'Seattle', 'WA', 'Tacoma', 'WA', 'November 11', 'Intelligence', 'Everstream Analytics', 'November 11', 'the Port of Alexandria', 'Egypt', 'November 10', '07:00', '08:15', 'November 30', '03:00 and 07:30', 'Pier 1', '22:00', 'October 5', 'Pier 2', 'the same day', '22:45', '00:00', '01:00', 'December 27', '19:30', '1', 'Port of Durban', '2', '22:25', '23:30', 'the same day', 'DCT Pier 1', '04:00 to 06:00', 'November 18', '06:00', '1', 'Durban', 'November 19', 'Intelligence', 'Everstream Analytics', '2', 'the Port of Durban', '108', '203', '02:30', '204', '03:00', '02:00', '02:40', 'December 9', '202', '04:00', 'the same day', 'Durban', '22:30', 'December 8', 'October 19', 'Xiazhimen', 'the Port of Ningbo', '7:50', '9:40', 'October 19', 'October 27', 'Xiazhimen', 'the Port of Ningbo', '7:10', 'October 26', 'November 10', 'Pacoba', 'the Sea of Crete', 'Ashdod', 'Piraeus', 'November 6', 'Piraeus', 'November 10', 'October 25', 'the Philippine Atmospheric, Geophysical and Astronomical Services Administration', 'PAGASA', '3', 'Albay', 'Camarines Norte', 'Camarines Sur', 'Catanduanes', 'Sorsogon', 'Burias', 'Ticao', '•', 'Calabarzon', 'Batangas province', 'Laguna province', 'Quezon province', '•', 'Calabarzon', 'Occidental Mindoro', 'Oriental', 'Mindoro', 'Romblon', 'Lubang', 'National Rail', 'Birmingham International', 'Coventry', 'Saturday', 'two', 'West Coast', 'CrossCountry', 'London Northwestern Railway', 'West Midlands Railway', 'up to 60 minutes', '15:00', 'October 15', 'Kingston', 'Milton Keynes', 'Buckinghamshire', 'October 8', 'Pier 1', '19:15', '21:15', 'October 18', 'Monday', 'four', 'Togo', 'Agisilaos', 'the evening of', 'Sunday, November 29', 'approximately 72 nautical miles', 'Lome', 'four', '23', 'two', 'Filipinos', 'one', 'Romanian', 'one', 'Russian', 'Sunday', '24th', 'the Gulf of Guinea', 'some 3,500 miles', 'Senegal', 'Angola', 'this year', 'at least 122', '11th', 'November', 'the coming months', 'the Gulf of Guinea', 'between November and March', 'calmer seas', 'the coming months', 'the Gulf of Guinea', 'Earlier this week', 'three', 'the Gulf of Guinea', 'November 16', 'Lagos', 'Nigeria', 'Lome', 'Togo', 'at least November 19', 'three', 'The Nigerian Navy', 'the Gulf of Guinea', '23', 'this year', '10', 'November', 'nearly 120', 'the Gulf of Guinea', 'the Gulf of Guinea', 'the dry season', 'November to March', 'the Gulf of Guinea', 'Rajapaksa', 'the Colombo Port City', 'Parliament', 'January 2021', 'June 19', 'the Palace of Culture and Science', 'Emilii Plater', 'al. Jerozolimskie', 'At least 300', 'daily', 'October 22', 'Constitutional Tribunal', 'up to hundreds of thousands', 'Warsaw', 'Gdansk', 'Lodz', 'Krakow', 'Poznan, Wroclaw', 'Szczecin', 'Katowice', 'Warsaw', 'Sejm', 'Jana Chrystiana Szucha', 'Plac Zbawiciela', 'Unii Lubelskiej', 'PiS', 'Nowogrodzka Street', 'PiS', 'Jaroslaw Kaczynski', 'Mickiewicza', 'Zoliborz', 'Parkowa Street', 'PiS', 'COVID-19', 'Solidarity', 'Polish', 'June 28', 'two', 'June 9', '21', '200,000', 'EUR', '24,400', 'Shenzhen', 'November 10', '60', 'London', 'GBP 5,000', 'EUR', '5,530', 'three', 'October 3', 'three', 'the morning', 'October 2', 'Del Norte', 'Monterrey', 'Diego de Montemayor', 'Los Angeles Avenue', 'Francisco González', 'October 16', 'six', 'more than 30', 'Zaragoza city', 'EUR 50,000', 'EUR', '100,000', 'Álava', 'Navarra', 'Zaragoza', 'Barcelona', 'Venice Beach', 'Los Angeles', 'Ocean Front Walk', 'Rose Avenue', 'December 2', '123', '104 Avenue', '10600', 'Timberland Road', 'London', 'GBP', '265,459', 'November 9', 'Tampa Bay', 'November 8', 'a Modified Port Condition Yankee', 'the Port of St. Petersburg', 'Florida', 'COTP', 'Port Condition Zulu', 'Port of Chittagong', 'December 30', 'the next two weeks', 'Port Klang', '24 hours', '20 tonnes', 'two', 'Patrick Terminals', 'the Port of Brisbane', 'One', '656-foot', '200 meter', 'November 4', 'The Busan New Container Terminal', '94%', 'this week', 'October 7', 'the Port of Busan', 'BNCT', '85%', 'October 7', 'Port of Cat Lai', 'Ho Chi Minh', '1 to 2 days', 'the Indian Meteorological Department', 'Chennai Port', 'Tamil Nadu', 'Chennai', '14:00', 'November 24', 'Outward', 'November 16', 'the Port of Chittagong', 'Singapore', 'Colombo', '5 days', 'Chittagong', '2-4 days', '2 days', 'Singapore', 'the Port of Colombo', 'up to 20 days', 'the end of June', 'the Port of Colombo', '10:30', 'December 2', 'Cyclone Burevi', 'the coming days', 'Dec 31', 'Port of Dalian', '20:00', 'Dec 28 to 12:30', 'Dec 30', 'Vessel', 'Five days', 'week 53', 'December 14', 'the Port of Dalian', '00:30 to 23:00', 'December 13', '22:00', 'December 13', 'December 28', 'the Port of Dalian', 'around 50 to 60', 'December 21 to December 23', 'COVID-19', 'Dalian', 'December 23', 'December 10', 'the Port of Dampier', 'Western Australia', 'December 21', 'Dover', 'the United Kingdom', 'UK', 'France', 'the next 48 hours', 'December 21', 'COVID-19', 'London', 'England', 'UK', 'the coming hours', 'UK', 'France', 'Freeport', '05:42', 'November 30', 'late in the evening', 'December 1', 'December 4', 'the Port of Genoa', 'VOLTRI', 'Piemonte', 'November 24', 'the Port of Genoa', 'The Port of Genoa', 'Italy', 'December 15', 'Verdi', 'Hamburg', '2021', 'COVID-19', 'one week', 'December 12', 'Verdi', '1,000', 'Eurogate', 'HHLA', 'the Port of Jeddah', 'November 4', 'Port of Manila', 'October 30', 'the Port of Manila', 'November 1', 'Typhoon Goni', 'the Port of Manila', 'October 5', 'the Port of Qingdao', '13:00 to 16:00', 'October 4', 'December 14', 'the Port of Qingdao', '09:00 to 20:30', 'December 13', '08:30 to 16:30', 'December 13', 'Dec 31', 'the Port of Qingdao', '8:00', '13:30', 'Dec 28', '5:00', 'Dec 29', '6:30', 'Dec 29', 'November 11', 'the Port of San Antonio', '08:10', 'November 10', 'December 15', 'the Port of San Antonio', '13:30', 'December 13', '253', 'October 13', 'the Port of San Antonio', '10:45', 'October 12', 'October 21', 'the Port of San Antonio', '21:00', 'October 21', 'October 1', 'the Port of San Antonio', 'late September 30', 'October 8', 'the Port of San Antonio', '21:30', 'October 6', 'October 9', 'the Port of San Antonio', '07:30', 'October 8', 'September 30', 'the Port of Santos', 'the next 8 months', 'one third', 'Dec 31', 'Port of Shanghai Waigaoqiao', '18:30', 'Dec 29', 'October 7', 'the Port of Singapore', 'around 0.5 days', 'the Port of Singapore', 'around 1.5 days', 'Singapore', 'January 8', 'the Port of Tianjin', 'January 6 and January 7', 'November 20', 'Shanghai', 'Waigaoqiao', 'China', '11:00 to 20:00', 'November 20', 'November 22', 'November 23 morning', 'Port of Manila', '0', 'Manila North', '4', 'days', '5', 'Manila South', '6', 'the day', 'Busan', 'Busan New Container Terminal', '2 days', 'this week', 'November 20', 'Port of Dalian', 'November 18', 'November 19', 'early morning', 'the coming days', 'Odfjell Terminal', 'Houston', 'Port Rd', 'Hwy 146', 'Seabrook', 'La Porte', 'October 19', 'APM Terminals', 'Barcelona', 'between 06:00 and 14:00', 'October 21', 'Tropical Storm Burevi', 'Kerala', 'Tamil Nadu', 'Tamil Nadu', '•\\tChennai', 'Cuddalore', 'Nagapattinam', 'Ennore', 'Kattupalli', 'Puducherry', 'VI', 'Mongolia', 'COVID-19', 'December', 'China', 'Mongolian', 'Mongolia', 'Russia', 'China', 'Chinese', 'China', 'recent weeks', 'National Development and Reform Commission', 'China', 'winter', 'China Electricity Council', 'CEC', 'last month', 'Mongolia', 'China', 'the winter', 'any year', '2016', 'Mongolia', 'China', 'China', 'recent months', 'Chinese', 'Australia', 'Australian', 'Canberra', 'Chinese', 'China', 'this year', 'China', 'Australian', 'up to two million tons', 'Tangshan', 'last week', 'Beijing', 'Australian', 'China', 'Mongolian', 'Mongolia', 'the winter', 'COVID-19', 'Mongolia', 'this week', 'China', 'the middle of December', 'Guangdong', 'Hunan', 'Inner Mongolia', 'Jiangxi', 'Shaanxi', 'Zhejiang', 'Shenzhen', 'Guangdong', 'Changsha', 'Hunan', 'Wenzhou', 'Yiwu', 'Zhejiang', 'some overnight hours', 'manufacturing hours', 'Guangzhou', 'Monday', 'Shanghai', 'Tuesday', 'the Shanghai Electric Power Company', 'Shanghai', 'Hunan', 'Jiangxi', 'Zhejiang', 'the end of the year', 'Zhejiang', 'COVID-19', 'earlier in the year', 'the year', 'China', 'winter', 'the past several months', 'COVID-19', 'Mongolia', 'China', 'Mongolian', 'Mongolia', 'China', 'Chinese', 'earlier this month', 'Australian', 'China', 'Australia', 'Wednesday', 'dozens', '$500 million', 'Australian', 'Chinese', 'June', 'More than 40 percent', 'China', '25 percent', '2019', 'Australia', 'at least three percent', 'China', 'annually', 'Australian', 'Australian', 'China', 'Australia', 'Chinese', 'Australian', 'China', 'Australian', 'Australia', 'the spring', 'China', 'November 13', 'Typhoon Vamco', 'at least 3.8 million', 'Metro Manila', 'about three days', 'Philippines', 'more than 100,000', 'October 29', 'more than 400,000', 'North Carolina', 'Tropical Storm Zeta', 'South Carolina', 'North Carolina', 'Virginia', 'Prospect Park', 'Brooklyn', 'New York City', 'Sunday', 'morning', 'one', 'Ocean and Parkside', 'João Lourenço', 'half', 'Santos', 'Santos', 'December 4', 'La Victoria', '50,000', 'Chinese', 'one', 'four', 'December 21', 'the South China Sea', 'Vietnamese', 'Singapore', 'China', 'Vietnam', 'October 14', 'Murphy Oil Corporation', 'Gulf of Mexico', 'Hurricane Delta', 'last week', 'Murphy Oil Corporation', 'Houston', 'TX', 'December 22', 'the Maritime Union of Australia', 'DP World Australia', 'PIA', 'DP World Fremantle', 'PIA', '6am', '25 December', '2pm', '27 December', '10pm', '27 December', '10pm', '28 December', 'day', '6am', '29 December', '2pm', '1 January', '2pm', '2 January', 'these hours', 'today', 'the Parliament House', 'Melbourne', '12:00', 'Spring Street', 'India', 'dozens', 'Durban', 'November 9', 'Riverhorse Valley', 'Newlands East', 'around 04:00', 'Effingham', 'Greenwood Park', 'North Coast Road', 'Riverhorse Valley', 'Durban', 'November 17', 'Colon', 'November 17', '1 hour', 'at least five', 'Murray Hill', 'Manhattan', 'New York City', '11 December', 'East 39th Street', '3rd Avenue', 'Immigration and Customs Enforcement (ICE', 'East 39th Street', 'Lexington Avenue', 'November 23', 'Bayhead Road', 'the Port of Durban', 'the morning of November 23', 'the coming days', 'Crane 521', 'November 24 to November 28', 'the last few days', 'Nigeria', 'Lagos', 'Lekki', 'Thursday', 'Abuja', 'Thursday', 'Benin City', 'Edo State', 'the state house of assembly', 'Friday', 'two', '100', 'Port Harcourt', 'Calabar', 'Asaba', 'Uyo', 'Amnesty International', 'at least ten', 'last week', 'the coming days', 'the Nigerian Army', 'Wednesday', 'evening', 'first', 'Verdi', 'Saturday', '28 November', 'Hamburg', '24-hour', '03:00', 'working hours', 'U-Bahn', 'Labour', '24-hour', 'Hamburg', '28 November', '03:00', 'Saturday', 'U-Bahn', 'Hochbahn', 'working hours', 'days', 'the first minute', 'daily', 'nine hours', 'November 18', 'Quebec Express', 'Notre Dame St. East', 'Avenue Haig', 'Montreal', 'QC', '13:47', 'November 14', 'Southampton', 'National Rail', 'Basingstoke', 'Eastleigh', 'Wednesday', 'morning', 'CrossCountry', 'Manchester Piccadilly / Birmingham New Street', 'Bournemouth', 'Winchester', 'London Waterloo', 'Bournemouth / Weymouth', 'at least 11:00', 'Clapham Junction', 'Surrey Quays', 'London', 'London Overground', '21:30', 'Liverpool Lime Street', 'Crewe', 'West Coast', 'London Northwestern Railway', '15:00', 'Milton Keynes Central and Rugby', 'West Coast', 'London Northwestern Railway', 'the day', 'National Rail', 'Thursday', 'Avanti West Coast', 'London Northwestern Railway', 'up to 45 minutes', 'National Express', 'at least 18:00', 'National Rail', 'Runcorn', 'Tuesday', 'Avanti West Coast', 'London Northwestern Railway', 'up to 30 minutes', 'Crewe', 'Liverpool South Parkway', '15:00', 'National Rail', 'Denmark Hill', 'Queens Road Peckham', 'Clapham Junction', 'Surrey Quays', 'London', 'London Overground', 'approximately 16:00', 'National Rail', 'Shadwell', 'Surrey Quays', 'Dalston Junction', 'London', 'up to 20 minutes', 'New Cross', 'Dalston Junction', 'approximately 09:45', 'National Rail', 'Stratford', 'London', 'approximately 12:00', 'October 7', 'Port of Chittagong', '1 to 2 days', 'at least 21', 'Australian', 'a month', 'the Port of Jingtang', 'Tangshan', 'Beijing', '15', 'June', 'last month', 'Chinese', 'Australian', 'Approximately 400', 'Jingtang', 'up to two million tons', 'China', 'Australian', 'Victoria', 'this week', 'Queensland', 'earlier this month', 'Jingtang', 'Indian', 'Indian', 'The Jag Anand', 'Mumbai', 'Great Eastern Shipping', 'June', '23', 'Indian', 'Anastasia', '18', 'Indian', 'Chinese', 'Friday', 'the Jag Anand', 'China', 'Great Eastern Shipping', 'Japan', 'China', 'COVID-19', 'Indian', 'China', 'Hebei', 'Australian', 'Chinese', 'the International Transport Workers’ Federation', 'the Jag Anand', 'nearly two years', 'the National Union of Seafarers of India', 'Jingtang', 'last month', 'Chinese', 'Australian', 'Australia', 'Australian', 'China', 'the past month', 'Australian', 'Australian', 'last season’s', 'China', 'China', 'Australia', 'two', 'Australia', 'China', 'China', \"Young Doctors of Civil Hospital'\", 'Karachi', 'today', 'Zweli Mkhize', '9 December', 'South Africa', '2019', 'COVID-19', 'the Western Cape', 'Eastern Cape', 'KwaZulu-Natal', 'Gauteng', 'the same day', '6,700', 'September', 'daily', '1,000', 'Durban', 'Richards Bay', 'KwaZulu-Natal', 'Western Cape', 'East London', 'Eastern Cape', 'hours', 'the National Coronavirus Command Council', '14 December', '15 December', 'the end of January 2021', 'Durban', 'up to a day', 'COVID-19', '72 hours', 'Regulatory', '2020', 'IHS Markit Inc.', 'October 20', 'Sandhu Transport Inc.', 'Chapter 7', 'October 19', 'Virginia Eastern Bankruptcy Court', 'Sandhu Transport, Inc.', 'Gainesville', 'Virginia', 'Fresh Produce', 'Grain Feed', 'Coal', 'Meat, DryBulk, Refrigerated Food, Beverages, Paper Products', 'Agricultural Farm Supplies', 'December 14', 'Tampa', 'Hapag-Lloyd', 'Savannah', 'Georgia', 'Tampa', 'Florida', 'Savannah', 'Tampa', 'Greek', 'five', '13', 'the Panhellenic Maritime Federation', '24-hour', 'midnight', 'November 26', 'the Port of Piraeus', 'Chinese', 'Zhoushan', '13', 'two', 'seven', 'Everstream Analytics', 'Panama', 'Xin Hong', 'Bình Thuận Province', '7,800 tonnes', 'Malaysia', 'Hong Kong', '11', 'Chinese', 'four', 'Vietnamese', 'Vietnam', 'Vietnam', 'Xin Hong', 'Panama', 'Phu Quy Island', 'Vietnam', 'Binh Thuan Province', 'Thursday', 'afternoon', 'Phu Quy', '11', 'Chinese', 'four', 'Vietnamese', '11', 'Friday', 'morning', 'two', 'two', 'The Xin Hong', 'Malaysia', 'Hong Kong', 'two', 'October 25', 'the Manila North Road', 'MacArthur Highway', 'Typhoon Molave', 'Calbayog City', 'the Pan-Philippine Highway', 'Maharlika Highway', 'Barangay Jiaan', 'Niabong', 'Typhoon Molave', 'October 25', 'Japanese', 'Shimo', 'Tokyo', 'the Odakyu Odawara', 'Keio Inokashira', 'the Setagaya area', 'November 3', 'Sema', 'the Azov-Don', 'Rostov', 'Mersin', 'November 3', 'Intelligence', 'Everstream Analytics', 'TIP', 'Guernsey 0010E', 'Nhava Sheva', 'Port Klang, Port of Singapore', 'Port of Karachi', 'December 9', 'Europe', 'HHLA Container Terminal', 'the Port of Hamburg', 'Germany', 'CTA', '48-hours', 'CTA', 'more than 48 hours', 'December 9', 'December 4', 'the Port of Xingang', 'Tianjin', 'COVID-19', 'Reefer', 'Qingdao', 'Dalian', 'the Port of Busan', 'MSC', 'CMA CGM', 'USD 1,500', 'November 18', 'Hapag-Lloyd', 'the Port of Busan', 'Korea', 'Tianjin', 'Tianjin', 'Australian', 'Thunderstorm Warning', 'southeast Queensland', 'Redland City', 'Brisbane City', 'Ipswich', 'Logan', 'Gold Coast Council Areas', 'The Bureau of Meteorology', 'Sydney', 'Flash', 'Lismore', 'Grafton', 'Coffs Harbour', 'Port Macquarie', 'Taree', 'Newcastle', 'Gosford', 'Sydney', 'Wollongong', 'Nowra', 'Batemans Bay', 'Canberra', 'Goulburn', 'Dubbo', 'Wagga Wagga', 'Northeast', 'Sunday night', 'Approximately 150,000', 'Pennsylvania', 'over 100,000', 'New York', '45,000', 'New Jersey', '30,000', 'Connecticut', 'Western Australia State', 'the end of Thursday', '15 October', 'Port Hedland', 'Karratha', 'Monday 16 November', 'Port Hedland', 'Western Australia State', 'the end of Friday', '16 October', 'Port Hedland', 'Karratha', 'Western Australia State', 'the end of Tuesday 13 October', 'Port Hedland', 'Carnarvon', 'Australia', 'east Victoria State', '12:00', 'Monday 7 December', 'up to 100 kilometres', 'Mount Beauty', 'Australia', 'Victoria State', '23:59', 'Thursday 8 October', 'up to 100 kilometres', 'Maryborough', 'Horsham', 'the Shaheen Hotel', 'Shershah Chowrangi', 'Karachi', 'October 28', 'Nordschleuse', 'Bremerhaven', 'Bremen', 'Germany', 'around 01:40', 'October 28', 'Safety Harbor', 'Saint Petersburg', 'tonight', 'one', '6th', 'the Sindh Action Committee', 'SAC', 'Karachi', '15 November', 'House', 'Civil Lines', 'Sindh', 'Amcor Way', 'Campbellfield', 'Melbourne', 'the Rolls-Royce', 'Barnoldswick', 'Skipton Rd', 'Crownest Rd', 'Unite', 'Rolls Royce', 'Unite', \"Rolls-Royce's\", 'Singapore', '350', 'Polish', 'Gdańsk Śródmieście', 'Gdańsk Główny', 'several hours', 'South Africa', 'the beginning of the year', 'recent months', 'the National Truck Drivers Founders', 'All Truck Drivers Foundation', 'December 1', 'South Africans', 'South Africa', 'South Africa', 'the coming weeks', 'the South African National Cargo Transport Drivers Association', 'December 17', '21 days', 'the National Bargaining Council', 'South African', 'Targeted', 'South Africa’s', 'Cyril Ramaphosa', 'November 19', '35', '9', 'N3', 'a day', 'November 23', 'late November', 'N3', 'R103', 'R23', 'R550', 'R59', 'Parys', 'N3', 'Johannesburg', 'N12', 'Benoni', 'R21', 'South African', 'South Africa', 'COVID-19', 'South Africa', 'about 90 percent', 'N3', 'Johannesburg', 'Durban', 'the Port of Durban', 'recent months', 'September', 'South Africa’s', 'Mozambique', 'Botswana', 'Zambia', 'South African', 'COVID-19', 'COVID-19', 'March 2020', 'around ZAR 1.4 billion', 'EUR', '77 million', 'over 20,000', 'the South African Association of Freight Forwarders', 'South Africa', 'COVID-19', 'the South African Labor Ministry', 'at least 84', 'April 2020', 'ATDF', 'xenophobia', 'South Africa', 'November 12', 'Taipei', 'the Port of Taichung', 'November 10', 'quay', 'December 23', 'the State Lorry Owners Association', 'December 23', 'the Chennai Transport Department', 'November 13', 'DP World Terminal at Port of San Antonio', 'Chile', 'COVID-19', '12:30', 'November 11', 'about 150', 'the Cosco Shipping Danube', 'the Port of Valparaiso', 'San Antonio', 'November 4', 'CGT', 'the Port of Barcelona', 'November 19', '06:00', 'Bilbao', 'Valencia', 'four to', 'five-hour', 'November 24', 'Fremantle Terminal', '09:00 to', '09:30 to 14:00', 'Melbourne Terminal', '09:30 to 13:30', 'Brisbane Terminal', '07:00 to', '11:00', 'Sydney', 'Wednesday', 'evening', '2 December', 'The Bureau of Meteorology', 'Sutherland', 'Penrith', 'Hornsby, Parramatta', 'Richmond', 'Sydney City', 'Sydney', 'the Sydney Harbour Bridge', 'Mona Vale', 'Bondi Beach', 'The Bureau of Meteorology', 'between 28 and 30 October', 'The Department of Disaster Prevention and Mitigation', 'days', '2,299', '140', '34', '17 October', '88,346', 'five', 'Ratchathani', 'Nakhon Ratchasima', 'Prachin Buri', 'Supan Buri', 'Ratchasima', 'the Moon River', 'Wednesday', 'The Meteorological Department', 'typhoon Molave', 'the South China Sea', 'six', 'Northeast', 'Sakon Nakhon', 'Nakhon Phanom', 'Kalasin', 'Maha Sarakham', 'Roi Et', 'Yasothon', 'Mukdahan', 'Amnat Charoen', 'Khon Kaen', 'Nakhon Ratchasima', 'Buri Ram', 'Surin', 'Si Sa Ket', 'Ubon Ratchathani', 'five', 'Prachin Buri', 'Sa Kaeo', 'Chanthaburi', '10', 'South', 'Phetchaburi', 'Khiri Khan', 'Chumphon, Surat Thani', 'Ranong', 'Phangnga', 'Phuket', 'Krabi', 'Satun', '29', '30 October', 'nine', 'the North (Nan,', 'Phrae', 'Uttaradit', 'Phetchabun', 'Phitsanulok', 'Phichit', 'Sukhothai', 'Tak', 'Kamphaeng Phet', '19', 'Northeast', 'Nong Bua Lamphu', 'Nong Khai', 'Sakon Nakhon', 'Nakhon Phanom', 'Maha Sarakham', 'Kalasin', 'Roi Et', 'Yasothon', 'Mukdahan', 'Amnat Charoen', 'Nakhon Ratchasima', 'Buri Ram', 'Surin', 'Si Sa Ket', 'Ubon Ratchathani', '14', 'the Central Plains', 'Sawan', 'Uthai Thani', 'Chai Nat', 'Lop Buri', 'Sing Buri', 'Ang Thong', 'Suphan Buri', 'Ayutthaya', 'Kanchanaburi', 'Ratchaburi', 'Samut Songkhram', 'Samut Sakhon', 'Bangkok', 'eight', 'Chachoengsao', 'Sa Kaeo', 'Chon Buri', 'Rayong', 'Chanthaburi', '10', 'South', 'Phetchaburi', 'Khiri Khan', 'Chumphon, Surat Thani', 'Ranong', 'Phangnga', 'Phuket', 'Krabi', 'Satun', 'Intelligence', 'Everstream Analytics', 'Fuzhou', 'Fuqing', 'Fuzhou', 'Fuqing', 'China', 'ONE', 'Fuzhou', 'Fuqing', 'December 8', 'Intelligence', 'Everstream Analytics', 'Fuzhou', 'Fuqing', 'Fuzhou', 'Fuqing', 'China', 'ONE', 'Fuzhou', 'Fuqing', 'December 8', 'December 10', 'Port of Xiamen', 'the Ports of Xiamen', 'China', 'Ocean Network Express', 'Xiamen', 'December 9', 'November 20', 'the Ningbo Port', 'November 22', 'evening', 'November 23 morning', 'October 19', 'the Port of Xiamen', 'October 23', '24 morning', 'December 30', 'a Strong Monsoon Signal', 'the Hong Kong Observatory', 'HKO', '40 km per hour', 'October 5', 'Port of Busan', 'between October 8-9', 'October 21', 'Hong Kong Port', '12:00', 'October 22', '22:00', 'October 23', '14:00 to 22:00', 'October 22', 'October 21', 'Shekou Port', '12:00', 'October 22', '22:00', 'October 23', 'November 20', 'Dalian', 'China', 'November 21', 'evening', 'November 22', 'afternoon', 'October 12', 'the Port of Hong Kong', 'October 13', '14 afternoon', 'October 12', 'Yantian Port', 'China', 'October 13', '14 noon', 'October 21', 'Yantian Port', '12:00', 'October 22', '22:30', 'October 23', 'October 2', 'October 3', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'Gippsland Lakes', 'West Coast', 'Central Coast', 'Central Gippsland Coast', 'East Gippsland Coast', 'October 8', 'West Coast', 'Central Coast', 'East Gippsland Coast', 'Port Phillip', 'Western Port', 'Central Gippsland Coast', 'Sydney', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'Intelligence', 'Everstream Analytics', 'December 30', '09:00', 'November 20', 'Gwangyang Port', 'South Korea', '10:30 to 20:00', 'November 19', 'Intelligence', 'Pier 2, Port of Duran', 'December 2', 'November 25', 'Port of San Antonio', 'Chile', 'November 24', 'evening', 'November 25', 'November 27', 'December 15', 'DCT Pier 2', 'the Port of Durban', '14:45', '01:30', 'Intelligence', 'Everstream Analytics', '2', 'Port of Durban', 'December 19', '16:20', 'October 23', 'DCT Pier 2', 'the Port of Durban', 'South Africa', 'at least 16:00', 'October 23', 'October 29', 'the Port of Durban', 'South Africa', 'DCT Pier 1', '15:30', 'DCT Pier 2', '15:00', '15:45', '15:25', 'the Port of Brisbane', 'December 12', 'December 13', '14', 'December 15', 'November 2', 'the Port of Felixstowe', 'November 2', 'the morning of November 3', 'October 14', 'Gdansk', 'October 14', '18:00', 'November 25', 'Port of Durban', 'November 28', 'November 20', 'Shanghai Yangshan', 'China', 'November 20', 'November 22', 'afternoon', 'November 23 morning', 'November 22 - 23', 'October 22', 'the Port of Felixstowe', 'UK', 'October 24', 'October 25', 'October 8', 'the Port of Kobe', 'Japan', 'the morning', 'October 9', 'October 10', 'October 8', 'the Port of Nagoya', 'Japan', 'the morning', 'October 10', 'October 8', 'the Port of Osaka', 'Japan', 'the morning', 'October 9', 'October 10', 'October 6', 'the Port of Yokohama', 'Japan', '03:00 to 15:00', 'October 8', 'Tamil Nadu', 'Puducherry', 'two', 'Tropical Storm Nivar', 'first', 'At least five', 'thousands', 'Puducherry', 'At least 2,000', 'Tamil Nadu', 'Thoothukudi', 'Ramasamypuram', 'Boltonpuram', 'Pucklepuram', 'Mela Thattaparai', 'Chennai', 'Bagyalakshmi Nagar', 'Gadana', 'Ramanadhi', 'Karupppanadhi', 'Adavinainar', 'Uppaaru', 'Korampallam', 'the Tiruchendur highway', 'October 21', 'Cheniere Energy Inc.’s', 'Sabine Pass LNG', 'Louisiana', 'Sabine-Neches Waterway', 'the weekend', 'Texas', 'the Gulf of Mexico', 'Port Arthur', 'Beaumont', 'Texas', 'Cheniere Energy, Inc.', 'Houston', 'Texas', 'AFIP', 'ten', 'Chinese', 'COVID-19', 'Dalian', 'Tianjin', 'Qingdao', 'Shanghai', 'Ningbo', 'Fuzhou', 'Xiamen', 'Guangzhou', 'Shenzhen', 'Haikou', 'December 1', 'ten', 'around 13:00', 'December 1', 'Norfolk Southern', 'Elkhart', 'Indiana', 'Binghamton', 'New York', 'Amherst', 'Ohio', 'December 25', 'the Middle East Monitor', 'the Iraqi Ministry of Interior', 'US', 'Baghdad', 'Qasem Soleimani', 'The Middle East Monitor', 'Victoria', 'US', 'Baghdad', 'Qasem Soleimani', 'Iran', 'Islamic Revolutionary Guards Corps', 'Quds Force', 'US', 'January 3, 2020', 'Baghdad', 'Iranian', 'Popular Mobilization Forces', 'PMF', 'Abu Mahdi', 'al Muhandis', 'US', 'January 3', 'Soleimani', 'Soleimani', 'Iran', 'last January', 'Iran', 'Washington', 'Tehran', 'the past week', 'Iranian', 'Mohsen Fakhrizadeh', 'November 27', 'Tehran', 'Tehran', 'US', 'Israel', 'Sunday, December 20', 'eight', 'Baghdad', 'Green Zone', 'the US Embassy', 'one', 'December 23', 'US', 'Donald Trump', 'Iran', 'Iran', 'American', 'Iraq', 'US', 'Diwaniyah', 'Samawah', 'December 29', 'December 25', 'Iran', 'US', 'Iraq', 'the Persian Gulf', 'the US Embassy', 'Baghdad', 'US', 'Iran', 'US', 'Washington', 'US', 'January 3', 'Tehran', 'Baghdad', 'Bahrain', 'Shia', 'November 12', 'World Sydney Terminal', '12:00 to 16:00', 'November 19', 'Maritime Union of Australia', 'World Sydney Enterprise Agreement', 'these hours', 'December 8', 'APM Terminals Maasvlakte II B.V at Port of Rotterdam', 'Netherlands', '19:00', '21:00', 'December 10', '21:00', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'Asia', 'India', 'weeks 44', '46', 'India', 'Asia', 'weeks 46', '48', 'Nhava Sheva', 'Cai Mep – Haiphong', 'Ningbo', 'Shekou', 'Singapore', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 45', '48', 'Ningbo', 'Shanghai', 'Pusan', 'Panama Canal', 'Caribbean', 'Charleston', 'Caribbean', 'Panama Canal', 'Panama Pacific Call – Pusan – Ningbo', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 45', 'Pusan – Shanghai', 'Ningbo', 'Yantian', 'Singapore', 'Suez Canal', 'Rotterdam', 'Suez Canal', 'Port Kelang', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 45', 'Shanghai', 'Ningbo', 'Singapore', 'Suez Canal', 'Suez Canal', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 45', 'Pusan – Ningbo', 'Shanghai', 'Suez Canal', 'Suez Canal', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 48', 'Rotterdam', 'Antwerp', 'Philadelphia', 'New York', 'Antwerp', 'New Orleans', 'London', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 47 FE3', 'Hong Kong', 'Yantian', 'Suez Canal', 'Rotterdam', 'Antwerp', 'Suez Canal', 'Jebel Ali', 'Yantian', 'Hong Kong', 'October 16', 'Hyundai', 'Merchant Marine', 'Hapag-Lloyd', 'Yang Ming', 'week 48', 'Ningbo', 'Suez Canal', 'six', 'Guayaquil', 'The Cabinet of Ministers', 'the Colombo South Port', 'the Board of Investment', 'the Colombo International Terminals', 'the Penang Port Commission', 'PPC', 'Teik Cheng', 'USD1.57mn', 'Penang', '2022', 'Magistrate Mihail', 'MT', 'New Diamond', 'The Colombo High Court', 'Panama', '270,000 metric tonnes', 'Kuwait', 'India', 'some 50', 'Callao', 'Callao', 'Costa Verde', 'three years ago', 'The Court of Appeal', 'the Centre for Environmental Justice', 'the Colombo Port City Project', '2015', 'The Department of Environment', '20', 'Chittagong', 'two', 'Tuan Ibrahim Tuan Man', '2 km', 'Port Dickson', 'The Foreign Ministry', 'more than 155', 'Indonesian', '12', 'China', 'Dalian Ocean Fishing', '7 November', 'the Colombo Port East Container Terminal', 'three', 'the Brazilian Post Office', 'Eletrobrás', 'the Port of Santos', \"The Guatemalan Exporters' Association\", 'Eta', 'at least 26%', 'The Hamburg Administrative Court', 'the Federal Ministry of Transport', 'the NGO Mare Liberum', 'Mediterranean', 'the Federal Agency', 'River Transport', 'The Kaohsiung District Court', 'eight years', 'two months', 'more than 100', 'Vietnamese', 'Chinese', 'Taiwan', 'The Kenya Revenue Authority', 'Colombo', 'Sri Lanka', 'Nigeria', 'Mombasa', 'Lomé University', 'six', 'Malaysian', 'Maritime Enforcement Agency', 'MMEA', '60', 'Chinese', 'Johor', 'six', 'Chinese', 'Port Authority of Singapore', 'six more months', '30 June 2021', 'USD33mn', 'The Ministry of Agricultural Development', 'Ships Incineration', 'Balboa', 'Panama City', 'Manzanillo', 'The National Police and the National System for Risk Management (Sinager', 'Yoro', 'Atlántida', 'Colón and Olancho', 'between 3-4 November', 'hurricane Eta', 'Navy', 'navy', 'Jakarta', 'Natuna', 'the South China Sea', 'The Permanent Commission on Contingencies', 'Colón, Yoro', 'Olancho', 'Iota', 'Eta', 'more than 6,690', '113,275', 'Yoro', 'The Permanent Contingency Commission', 'Copeco', 'Atlántida, Colón, Islas de la Bahía', 'Olancho', 'Gracias', 'Dios', 'hurricane Eta', 'the Port of Santos', 'Santos Port Authority', 'SPA', 'a period of 45 days', 'SPA', 'USD384mn', 'Ports Authority', 'Daya Rathnayake', 'Colombo Port', 'Indonesia', 'Singapore', '38th', 'Pangkalpinang', 'The Shanghai International Energy Exchange', 'INE', 'PetroChina Co', 'Singapore', 'Shenzhen', '10', 'Hongkong', 'Taiwan', 'August', 'The Singapore Tourism Authority', 'November 2020', '50%', 'the Tourism Industry', 'COVID-19', 'The State Media', 'Hong Kong', 'Shenzhen', 'the Shenzhen Bay Port', '14-day', '5 January 2021', 'The Superior Audit of the Federation', 'Ciudad de Carmen', 'Campeche', 'Ensenada', 'La Paz', 'Baja California', 'Manzanillo', 'Colima', 'Sinaloa', 'Lázaro Cárdenas', 'Michoacan', 'Vietnamese', '740-km', 'Mekong Delta', 'Ho Chi Minh City', 'October 21', 'Genoa city', 'October 20', '08:30', 'two', 'October 20 morning', 'October 22', '800', 'Xiaomi', 'October 21', 'afternoon', 'Minle Street', 'Hung Hom', 'Kowloon City', 'Hong Kong', 'about CNY 1.5 million', 'USD 223,650', 'EUR', '190,219', 'October 29', 'two', 'Asia', 'Callao', 'La Victoria', 'Buenos Aires', 'October 24', '02:00', 'EUR', '126,600', 'December 8', 'six', 'around 5 tons', 'USD 40,000', 'EUR', 'La Victoria', 'Lima province', 'December 9', 'Caral Logistics Customs', 'Callao', 'December 4', 'October 28', 'USD 4 million', 'EUR', '3,376,000', 'QEX Logistics', 'Shanghai city', 'Jiangsu', 'QEX Logistics', 'around 11:00 PM', 'Sunday', 'three', 'the Singapore Strait', 'Indonesian', 'three', 'the Strait’s Traffic Separation Scheme', 'TSS', 'first', 'third', 'Nongsa Point', 'second', 'Pulau Nongsa', 'the Regional Cooperation Agreement on Combating Piracy and Armed Robbery Against Ships', 'Asia', 'the Singapore Strait', 'October', 'six', 'monthly', 'the year', 'October', 'only one', '28', 'Strait', '2020', '31', '2019', 'year', '24', 'TSS', 'Sunday', 'one', 'Batam', 'Indonesia', 'Indonesian', 'Sunday night', 'three', 'the Singapore Strait', 'the span of', '3 hours', 'between October 25', '26', 'three', 'October', 'six', 'monthly', 'this year', '28', 'the Singapore Strait', 'this year', '31', 'last year', '105km', 'Singapore Strait', 'thousands', 'Singapore', 'November 23', 'Tina', 'November 22', 'Singapore', 'Batam', 'November 10', 'Ueberseestadt', 'Bremen', 'Germany', 'About 40', 'About 8', '25', 'Four', 'October 28', 'Hyundai Steel', 'Ulsan', '2 4-hour', '4 hours', '10:30 to approximately 14:30', 'The 28th', '4 hours', '2:30 to 6:30', 'the 29th', 'Gremio de Transportistas de Guayaquil', 'the Guayaquil Port Terminal', 'today, October 8', '18:00', 'December 14', 'Trasmediterránea', 'Algeciras', 'the Maritime Station of the Port of Algeciras', 'Trasmediterránea', 'about 800', '1,500', 'Strait', 'about 150', 'about 300', 'December 14', 'Spanish', 'Trasmediterránea', 'Algeciras', 'Spain', 'December 14', 'Algeciras', 'Trasmediterránea', 'Spain', 'the Canary Islands', 'the Balearic Islands', 'Africa', 'Spanish', 'approximately 65 kilometers per hour', 'roughly 28 kilometers per hour', 'Sambava', 'Andapa', 'Befandriana Avaratra', 'Mandritsara', 'Andilamena', 'Amparafaravola', 'Ambatondrazaka', 'Mozambique', 'Zimbabwe', 'the coming days', 'Tropical Depression Vicky', 'Baganga, Davao Oriental', 'Friday', 'Cebu City', 'two', 'Vicky', 'the Sulu Sea', 'Palawan', 'this afternoon', '19 December', 'approximately 260km', 'Puerto Princesa City', '45kph', '1', 'Luzon', 'Visayas', 'Mindanao', 'Philippine Atmospheric, Geophysical and Astronomical Services Administration', 'Philippines', 'late afternoon', 'Sunday', 'October 14', 'Hongkong Post', 'Tropical Storm Nangka', '8', 'between 05:40 and 19:40', 'October 13', 'Hong Kong', 'EMS', 'Operations', 'at least a day', 'November 10', 'Confederación Argentina del Transporte', 'de Cargas', 'CATAC', 'Cargill', 'Colon, Buenos Aires', 'the Port of Rosario', 'November 16', 'the Argentine Confederation of automotive Freight Transportation', 'Colon', 'the Buenos Aires Province', 'Argentina', 'four days', 'the Nuevo Central Argentino', 'Cargill', 'Tsingtao Express', '14-day', 'Busan', 'one', 'COVID-19', '21', 'the evening', 'December 25', 'Malacca Strait', 'Melaka', 'Malaysia', 'Port Dickson', 'January 4', 'Svitzer Australia', '24-hour', 'January 2', 'Sydney', 'Brisbane', 'Melbourne', 'January 3', 'Fremantle', 'the coming days', 'Svitzer', 'January 4', 'January 31', 'October 27', 'two', '04:30', 'October 27', 'Ho Chi Minh City-', 'Thu Thua', 'two', 'the Maritime Union of Australia', 'two hour', 'DP World Fremantle', 'December 21', 'these hours', 'two', 'Harbor Freeway', 'South Los Angeles', 'Manchester Avenue', 'four', 'November 2', 'the Cagayan Valley', 'Central Luzon', 'Cordillera Administrative Region', 'Ilocos', 'Typhoon Goni', 'Goni', 'Albay', 'Camarines Norte', 'Camarines Sur', 'Catanduanes', 'Masbate', 'Sorsogon', '•\\tCagayan Valley', 'Isabela', 'Nueva Vizcaya', 'Quirino', '•\\tCalabarzon', 'Batangas', 'Cavite', 'Laguna', 'Quezon', 'Rizal', '•\\tCentral Luzon', 'Aurora', 'Bataan', 'Bulacan', 'Nueva Ecija', 'Pampanga', 'Tarlac', 'Zambales', 'Ilocos', 'La Union', 'Pangasinan', '•\\tNational Capital Region', 'NCR', 'Metro Manila', '•\\tSouthwestern Tagalog: Marinduque', 'Occidental Mindoro', 'Oriental', 'Romblon', 'Transit Lines 1 and', '3', 'the National Capital Region', 'Typhoon Goni', 'The U.S. Consulate General', 'Guayaquil', 'Guayaquil', 'Ecuador', 'Guayaquil', 'The U.S. Embassy', 'Guayaquil', 'The Security Alert', 'Monday', 'the U.S. Embassy', 'Kingston', 'Weather Alert', 'American', 'Jamaica', 'the Cayman Islands', 'Jamaica', 'the Cayman Islands\\n\\n \\n\\nEvent: Tropical Storm Delta', 'Jamaica', 'the Cayman Islands', '• Monitor the National Hurricane Center', '• Seek', '• Review', '• ', '• Have evacuation', 'U.S.', 'Kingston', 'Jamaica', '142', 'Hope Rd', '6', 'Jamaica', 'Whitter Village', 'Burger King', 'Montego Bay', 'St. James', 'Jamaica', '150', 'Smith Road\\n\\nSmith Road Center', '202B', 'George Town', 'KY1-1010', 'Grand Cayman', 'Cayman Islands', 'Monday', 'the U.S. Embassy', 'Tegucigalpa', 'Weather Alert', 'American', 'Honduras', 'Location: Honduras \\n\\n\\n\\nEvent', 'Tropical Storm Eta', 'Honduras’ Caribbean', 'The National Hurricane Center', 'Central America', 'Friday, November 6, 2020', 'as high as 12', 'The Government of Honduras', 'Gracias', 'Atlántida', 'Olancho', 'the Bay Islands', 'American', 'Santa Barbara', 'Francisco Morazán', 'Comayagua', 'El Paraiso', 'American', 'Copán, Ocotepeque', 'Intibucá', 'La Paz', 'Valle', 'Choluteca', 'the National Hurricane Center', 'Assistance', 'U.S.', 'Tegucigalpa', '504', '2238-5114', '888-407-4747', '202-501-4444', 'Sunday', 'the U.S. Embassy', 'Tegucigalpa', 'Weather Alert', 'Category 1', 'the Saffir-Simpson Wind Scale', 'Location: Honduras\\n\\n\\n\\nEvent', 'Caribbean', 'Honduras', 'approximately 600 kilometers', 'Gracias', 'Dios', 'Caribbean', 'Central American', 'early Tuesday, November 3, 2020', 'American', 'Gracias', 'Dios', 'Atlantida, Colon, Yoro, Cortes', 'Olancho', 'the Bay Islands', 'Thursday, November 5, 2020', 'American', 'Santa Barbara', 'Comayagua', 'Francisco Morazan', 'El Paraiso', 'the National Hurricane Center', '• Follow', '• Inform', '• Prepare', '• Notify', 'Assistance', 'U.S.', 'Tegucigalpa', '504', 'State Department', '888', '202-501-4444', 'The Weather Alert', 'The U.S. Embassy', 'Guayaquil', 'Guayaquil', 'The U.S. Embassy', 'October 20', 'U.S.', 'Reach Holding Group', 'five', 'Chinese', 'Iran', 'Islamic Republic of', 'U.S.', 'June', 'Tuesday', 'the U.S. Mission in Nigeria', 'Protest Alert', 'U.S.', 'Nigeria', 'Abuja and Lagos', 'Lagos State', 'October 19', '24-hour', '4:00 p.m.', 'October 20', 'Consulate General Lagos', 'today', 'tomorrow', 'U.S.', 'Protest Alert', 'Nigeria', 'the last few days', 'Lagos', 'Edo', 'the weekend', 'at least 18', 'October 8', 'four', 'Monday', 'two', 'Niger Delta', 'Reformed Niger Delta Avengers', 'Nigerian', 'RNDA', 'Chevron Valve', 'Shell Forcados Terminal', 'Escravos', 'Lagos', 'Escravos Tank Farm', 'the Bonny Export Terminal', 'Unionized Togo Terminal', 'Lomé Multipurpose Terminal', '48-hour', '19 November', 'November 19', 'United Fruit & Produce Co., Inc.', 'Chapter 7', 'November 18', 'New York Eastern Bankruptcy Court', 'United Fruit', 'Produce', 'Docklands', 'Melbourne', 'Harbour Esplanade', 'Collins Street', '6.0', 'approximately 1,453 miles', 'San Antonio', 'Chile', 'The European-Mediterranean Seismological Centre', '3.7', '12 miles', 'Guayaquil', 'Ecuador', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.1', '12 miles', 'Manzanillo', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.3', '13 miles', 'Manzanillo', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', '4.1', 'approximately 18 miles', 'Nagoya', 'The European-Mediterranean Seismological Centre', '4.0', '24 miles', 'Manzanillo', 'Mexico', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.2', '41 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', '4.9', 'the Pacific Ocean', 'approximately 45 miles', 'Taipei', 'Taiwan', 'The European-Mediterranean Seismological Centre', '4.6', '47 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.7', '50 miles', 'San Antonio', 'Chile', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.4', '60 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.0', '64 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '6.3', '64 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.7', '66 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '3.6', 'seven miles', 'Guayaquil', 'Ecuador', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.0', 'approximately 73 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', '6.2', 'approximately 730 miles', 'Tokyo', 'The European-Mediterranean Seismological Centre', '4.8', 'approximately 74 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '5.2', '77 miles', 'San Antonio de los Cobres', 'Argentina', 'European Mediterranean Seismological Centre', 'ML', 'Mw', '3.5', 'approximately eight miles', 'Callao', 'Peru', 'The European-Mediterranean Seismological Centre', '4.0', '81 miles', 'Manokwari', 'Indonesia', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.1', '81 miles', 'Makassar', 'Indonesia', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'The European-Mediterranean Seismological Centre', '4.1', 'nine miles', 'Taichung', 'Taiwan', 'European Mediterranean Seismological Centre', 'ML', 'Mw', 'Ekeren', 'Greek', 'Agrari', '25 November', 'Saudi Arabia’s', 'Shuqaiq', 'Jizan', 'Yemen', 'Yemen', 'Houthi', 'Saudi', 'Jeddah', '23 November', 'Saudi Aramco', 'Saudi Arabia’s', 'Red Sea', 'Jeddah', '24 November 2020.Photo', 'Fayez Nureldine/AFP', 'Houthi', 'Saudi Arabia', 'early September', 'Greek', 'about one meter', 'Saudi', 'Houthis', 'IHS Markit', 'Houthi', 'Saudi', 'the Red Sea', 'Saudi Arabia', 'Jeddah', 'Houthi', 'Saudi', 'Jeddah', 'IHS Markit', 'Houthis', 'Quds-2', 'Yahya Saree', 'Houthi', 'Saudi Arabia', 'Houthi', 'Abd al-Wahhab al-Mahbashi', 'Eilat', 'Israel', 'the Red Sea', 'Saudi Arabia', 'Jeddah', 'Saudi', 'Yemen', 'Israel', 'Houthi', 'Yemeni', '1,100 km', 'Eilat', 'Houthi', 'Yemen', 'Israel', 'Israel', 'the United States', 'Saudi Arabia', 'the United Nations', 'Hodeidah', 'December 2018', 'Saudi', 'Yemen', 'Sanaa', 'Saudi Arabia', 'Saudi Arabia', 'Jizan', 'Abha', 'Najran', 'the Red Sea', 'Houthi', 'the Red Sea', 'Israel', 'Riyadh', 'Saudi Arabia', 'Saudi Arabia', 'Israeli', 'Houthi', 'Israel', 'Yemen', 'UN', 'Saudi Arabia', 'Houthis', '2020', 'IHS Markit Inc.', 'Chinese', 'Chinese', 'Australian', 'seven', '6 November', 'Chinese', 'Australian', 'Australian', 'China', 'Chinese', 'Chinese', 'Australian', 'Chinese', 'China', 'Australia', 'recent months', 'Australian', '2019', 'COVID-19', 'April', 'May', 'Chinese', 'Australian', '9 October', 'Chinese', 'Australian', 'this came days', 'Quadrilateral Security Dialogue', 'Australia', 'India', 'Japan', 'the United States', 'China', 'Quad', 'Australia', 'Japan', 'October 2020', 'Australia', 'the Indo-Pacific', 'Australian', 'Simon Birmingham', 'China', 'Australia', 'China', 'Australia', 'Chinese', 'Australian', 'Australian', 'the Australian Department of Foreign Affairs and Trade', 'China', '32.6%', 'USD111.1 billion', 'the financial year ending 2019', 'China', 'National Bureau of Statistics', 'Australia', '2019', '1.9%', 'Chinese', '3.8%', 'China', 'the Asia-Pacific', 'Oceania', 'China', 'Australian', 'Australia', 'Australian', 'China', 'the Liberal-National', 'the Labor Party', 'China', 'Australia', 'China', 'April', 'COVID-19', 'Chinese', 'Australian', 'China', 'Australia', 'China', 'India', 'US', 'Malabar', 'this month', 'Australian', 'China', 'Australia', 'Quad', 'Hong Kong', 'the South China Sea', 'Malabar', 'Australia', '2007', 'China', 'Kevin Rudd', 'China', 'Australia', 'Quad', 'November and December 2020', 'Australian', 'China', 'Beijing', 'Australian', 'the winter months', 'China', 'Australian', '2019', '62%', 'China', 'Australia', 'Chinese', 'China', 'Australia', 'Australian', 'Australia', 'China', 'Australian', 'Chinese', 'Australia', 'January 2021', 'June 2020', 'Australia', 'Chinese', 'September 2020', 'Australia', 'Australia', 'China', 'Chinese', 'Australian', 'Australian', 'Australian', 'Scott Morrison', 'Chinese', 'Xi Jinping', 'Chinese', 'Chinese', 'Australian', 'Australia', '2020', 'IHS Markit Inc.', 'The Balochistan Liberation Front (BLF)', 'one', 'Pakistan', 'Balochistan', '20 October', '61', 'Pakistani', '20', 'July', 'August 2020', 'BLF', 'the Baloch National Freedom Movement', 'BRAS', '15 October', 'Oil and Gas Development Company Limited', 'Karachi', 'Gwadar', 'At least seven', 'seven', 'BLF', 'BRAS', 'Sindhi', 'Pakistan', '14 August 2020', 'Pakistani', 'Chinese', 'Sindh', 'Pakistani', 'Chinese', 'second', 'June 2020', 'the Pakistan Stock Exchange', 'Karachi', 'the next year', 'the Frontier Works Organization', 'Chinese', 'Balochistan', 'Sindh', 'Construction', 'Chinese', 'Security forces©', '2020', 'IHS Markit Inc.', 'October 27', 'BP Plc', 'the U.S. Gulf of Mexico', 'Tropical Storm Zeta', 'BP', 'Sunday', 'BP plc', 'British', 'London', 'United Kingdom', 'Charleston', 'Tropical Storm Eta', 'Hagood Avenue', 'Broad Street', 'Beaufain Street', 'Ashley Avenue', 'Laurens Street', 'Hassell Street', 'Charleston', 'Tropical Storm Eta', 'US-17', 'Charleston', 'The United States', '3 November', '35', 'Senate', '435 House of Representatives', 'as of the morning of', 'November', 'Joe Biden', '238', '216', 'Donald Trump', 'Trump', 'Pennsylvania', 'Michigan', 'North Carolina', 'Georgia', 'Biden', 'Wisconsin', 'Trump', 'four', 'five', 'Democratic', 'Trump', 'Biden', 'Trump', 'Texas', 'Florida', 'Ohio', '2016', 'Florida', 'Wisconsin', 'Nebraska', 'Maine', 'US House of Representatives', 'second', 'Biden', 'Trump', 'roughly 1.5%', 'Wednesday', 'Friday', 'Senate', 'one', 'two', 'Georgia', 'January 2021', 'Democrats', 'Senate', 'South Carolina', 'Iowa', 'Montana', 'North Carolina', 'Maine', 'Democrats', 'Arizona', 'Colorado', 'between 47 and 50', '100', 'Congress', 'Biden', 'Republican', 'Senate', 'Biden', 'Trump', 'Senate', 'Republicans', 'House', 'Democrats', 'March', 'Republican', 'Senate', 'Trump', 'Biden White House', 'several days', 'Trump', 'Democrats', 'New York', 'Washington', 'Atlanta', 'Portland', 'Seattle', '13', 'Michigan', '8 October', 'the weeks ahead', 'Supreme Court', 'Supreme Court', 'Trump', 'Trump', 'Biden', 'Trump', 'Republican', 'Senate', '2020', 'IHS Markit Inc.', 'Los Angeles County', 'Tuesday, November 10', '7:30 AM', 'November 4', 'London Gateway', 'recent weeks', 'mid of November', 'Panama City', 'the National Union of Workers of Construction and Similar Industries', 'de la Industria de la Construcción', '13 October', 'the Ministry of Labour', 'the last three weeks', 'today', '21 October', 'Panama City', 'the Panamanian Chamber of Construction', 'around 20%', 'Panamanian', 'September', '2019', 'COVID-19', 'May–July', 'SUNTRACS', 'COVID-19', 'recent months', 'COVID-19', 'COVID-19', 'USD500 million', 'COVID-19', '10%', '15%', 'Panama', 'months', 'SUNTRACS', 'Panama City', 'Protests', 'Healthcare', 'Agriculture©', '2020', 'IHS Markit Inc.', 'November 25', 'the Port of New York', 'New Jersey', 'up to 8 days', 'Norfolk', 'VA', 'recent weeks', 'New York', 'hours', 'Thanksgiving', 'IHS Markit perspectiveImplicationsOn', '2019', 'COVID-19', '49 million', 'Europe', '1,732,918', 'the seven days', 'November', 'the World Health Organization (WHO', '999,652', 'Americas', 'France', 'Italy', 'daily', 'UK', 'UK', 'Moonshot', 'US', 'the Centers for Disease Control and Prevention', 'CDC', 'WHO', 'ACT Accelerator', 'Veklury', 'Gilead Sciences', 'US', 'The day', 'COVID-19', 'Novartis', 'Switzerland', 'Ilaris', 'COVID-19', '2019', 'COVID-19', '48,718,555', '6 November', 'Johns Hopkins University', '48,132,764', 'a day earlier', 'US', '9,609,569', '9,487,080 24 hours', 'India', '8,411,724', '8,364,086', 'the previous day', 'India', 'Brazil', '5,590,025', 'Russia', '1,720,063', 'France', '1,648,989', 'Spain', '1,306,316', 'Argentina', 'Colombia', 'the United Kingdom', 'Mexico', 'COVID-19', '1,233,961', '1,225,881 24 hours', 'COVID-19', 'US', '234,937', '233,729', 'the previous day', 'Brazil', 'COVID-19', '161,106', 'Brazil', 'India', '124,985', 'Mexico', '93,772', 'the United Kingdom', '48,210', 'Italy', '40,929', 'France', 'Spain', 'Iran', 'Peru', 'COVID-19', 'Europe', 'Europe', 'the United Kingdom', 'France', 'Italy', 'Europe', 'The World Health Organization (WHO)’s', 'COVID-19 Weekly Epidemiological Update', '3 November', 'Europe', '1,732,918', 'the previous seven days', '52%', 'seven-day', '46%', 'the previous week', 'Americas', '999', '652', '30%', '31%', 'the previous week', 'Europe', '39%', 'the past week', 'Americas', '38%', 'weekly', 'the previous week', '25 October', 'Europe', '30%', 'Americas', '43%', 'France', 'France', 'yesterday', '5 November', '58,046', 'COVID-19', 'the previous 24 hours', 'daily', 'second', 'four days', 'Olivier Véran', 'second', 'France', 'first', 'the spring', 'Reuters', 'Italy', 'Italy', 'yesterday', '445', 'COVID-19', '24 hours', 'daily', '23 April', '34,505', 'COVID-19', 'UK', 'Guardian', 'Italian', 'today', '6 November', 'Jordan', 'Jordan', 'COVID-19', 'just a few months', 'Guardian', 'Jordan', 'just 1,100', 'COVID-19', '11', 'late July', 'several weeks', 'the summer', 'daily', 'September', 'WHO', 'COVID-19 Weekly Epidemiological Update', '3 November', 'Jordan', '21', '857', 'the previous week', '1 November', 'fourth', 'weekly', 'Eastern Mediterranean', 'Iran', 'Morocco', 'Iraq', 'this week', '3 November', '5,877', 'COVID-19', 'one day', 'daily', 'the Johns Hopkins University', 'Jordan', '95,864', '1,069', 'this morning', '6 November', 'Vaccines', 'United Kingdom', 'UK', 'AstraZeneca', 'COVID-19', 'China', 'the end of 2020', 'first', 'the end of this year', 'AstraZeneca', 'Chinese', 'Shenzhen Kangtai Biological Products', 'China', 'at least 100 million', 'AstraZeneca', 'Reuters', 'AZD1222', 'China', 'mid-2021', 'France', 'French', 'OSE Immunotherapeutics', 'second', 'COVID-19', '120', 'COVID-19', 'COVID-19', 'CoVepiT', '11', 'United Kingdom', 'United States', 'AstraZeneca', 'Reuters', 'US', 'COVID-19', 'the US FDA', 'over 25,000', 'the United Kingdom, South Africa', 'Brazil', 'US', 'US Phase III', 'the later start', 'US', 'TreatmentsSouth Korea', 'South Korean', 'Celltrion', 'COVID-19', 'CT-P59', 'Reuters', '18', 'COVID-19', '44%', '15', 'CT-P59', 'three', 'South Korea', 'around 1,000', 'COVID-19', 'South Korea', 'the end of this year', 'September', 'around 1 million', 'COVID-19', 'US', 'Eli Lilly', 'Regeneron', 'Switzerland', 'Novartis', 'Switzerland', 'Ilaris', '29-day', '454', 'COVID-19', 'Ilaris', 'COVID-19', 'the four weeks', 'Novartis', 'the next few weeks', 'the United States', 'Russia', 'Europe', '127', 'early 2021', 'Novartis', 'COVID-19', 'DiagnosticsUnited States', 'US', 'Fluidigm', 'US', 'Healthvana', 'Fluidigm', 'Advanta Dx', 'Healthvana', 'Healthvana', 'under one minute', 'COVID-19', 'Hungarian', 'Peter Szijjarto', 'yesterday', 'Russian', 'COVID-19', 'December', 'Russian', 'late January 2021', 'Hungarian', 'Russian', 'COVID-19', 'Budapest', 'Russian', 'Hungarian', 'Russian', 'The Gamaleya Institute’s', 'Sputnik V', 'Russian', 'Russia', 'EpiVacCorona', 'Russia', '1 January 2021', 'United Kingdom:', 'Greater Manchester’s', 'Optigene', 'UK', 'UK', 'GBP323 million', 'USD424 million', 'COVID-19', 'UK', 'The Guardian', '20 minutes', 'more than 50%', 'Moonshot', 'Greater Manchester', 'only 46.7%', 'Manchester', 'Salford', 'October', 'Martyn Pritchard', '2 November', 'Manchester', '46.7%', 'the Direct RT-Lamp', 'Direct RT-Lamp', 'The Department of Health and Social Care', 'three', 'Manchester', 'Guardian', 'the US Centers for Disease Control and Prevention', 'CDC', 'Robert Redfield', '4 November', 'US', 'COVID-19', 'Twitter', 'COVID-19', 'CDC', 'around 40%', 'COVID-19', 'August', 'CDC', 'September', 'CNN', 'Redfield', 'Thomas Tsai', 'the Harvard Global Health Institute', 'CDC', 'Tsai', 'COVID-19', 'a few months ago', 'COVID-19 Tools', 'Reuters', 'COVID-19', 'US', 'Gilead', 'IHS Markit', 'Unitaid', 'the Wellcome Trust', 'COVID-19', '245 million', '2022', 'Reuters', 'WHO', 'nearly 3 million', 'later today', 'first', 'USD7.2 billion', 'the next 12 months', 'USD320 million', 'Fujifilm Diosynth Biotechnologies', 'Japan', 'Denmark', '4 million', 'Eli Lilly', 'Fujifilm', 'April', 'COVID-19', 'Ilaris', 'COVID-19', 'yesterday', 'WHO', 'Reuters', 'Roche', 'Switzerland', 'Regeneron', 'US', 'US', 'COVID-19', '73rd', 'World Health Assembly', 'WHA', '9 November', 'COVID-19', 'the International Health Regulations', 'WHO', 'COVID-19', '87.2%', 'year', 'year', 'the first half of 2020', 'COVID-19', 'PriceWaterhouseCoopers', '99', 'the first half of the year', 'USD35 billion', 'billion', 'the first half of 2019', '17%', '119', 'the first half of 2019', 'COVID-19', 'COVID-19', 'today', 'Argentine', 'COVID-19', 'UK', 'USD26-billion', 'European', 'weekly', 'PPE', 'Europe', 'WHO', 'ACT Accelerator', 'Veklury', 'UK', 'Operation Moonshot', 'US', 'Novartis', 'Ilaris', 'COVID-19', 'Actemra', 'Roche', 'Novartis', 'JAK', 'Jakavi', '2020', 'IHS Markit Inc.', 'hundreds', 'Tuesday, November 17', 'Durban', 'Groups', 'Higginson Hwy', 'Umgeni Rd', 'Springfield Park', 'Jordan', 'Iraq', 'Egypt', 'Amman', '25 August 2020', 'Jordanian Kingdom Council/Handout/Anadolu Agency', 'Getty ImagesKing', 'Abdullah II', 'Bisher al Khasawneh', '10 November', 'COVID-19', 'daily', 'COVID-19', '2,459', '18 October', 'Khasawneh', 'King Abdullah', '7 October', 'Jordan', 'IHS Markit', 'Khasawneh', 'the coming week', 'Jordan', 'Middle East', 'Jordan', 'IHS Markit', 'the next three years', 'Jordan', '15%', '2019', 'one-year', 'Jordan', '2021', 'Jordan', '13 April 2020', 'Jordan', 'COVID-19', '28 June 2019', 'Jordan', '19%', 'Q4 2019', '23%', 'Q2 2020', 'the Jordan Department of Statistics', 'COVID-19', '30,000–40,000', '100,000', 'Jordanians', 'each year', '2.4%', '6.6%', '2000', '2009', '7.0%', '2020', 'COVID-19', '4.1%', '2021', 'Jordan', '31 July 2020', 'Jordanian', 'COVID-19', 'November', '2021', 'thousands', 'Amman', 'the Islamic Action Front (IAF', 'the Muslim Brotherhood', 'November', '25%', 'IAF', '25%', '2016', 'only 15', '130', 'thousands', 'hundreds', 'the “National Committee of Military Veterans”', 'daily', 'COVID-19', 'Jordan', '2020', 'IHS Markit Inc.', 'Gdansk Glowny Station', 'Gdansk Srodmiescie', 'Gdansk Stocznia', 'several hours', 'November 11', 'the Port of Rotterdam', '6', 'COVID-19', 'November 19', 'the Port of Antwerp', 'UK', 'Antwerp', 'Asunción', 'five', '45,000', 'San Antonio', 'Brisbane', 'the Australian Border Guard Service', '144kg', 'South Africa', '200', 'Cargill', 'NCA', 'four days', 'Gold Coast', 'Brisbane', 'Salvador', 'Bahia', 'almost half', 'Antwerp', 'Belgium', 'Sydney', 'Harbour Bridge', 'pro-Armenian', 'Azerbaijani', 'Nagorno-Karabakh', 'Armenia', 'Azerbaijan', 'Guarujá', 'São Paulo', 'at least five', 'the Port of Santos', 'October 30', 'the Port of Colombo', 'October 30', 'COVID-19', 'Equatoguinean', '17 October', 'the Marshall Islands', 'LNG', 'the Punta Europa LNG Terminal', 'Bioko Island', 'Equatorial Guinea’s', 'LNG', 'Equatoguinean', 'Filipino', 'Equatoguinean', 'Equatoguinean', 'Gulf of Guinea', 'Lomé in Togo', 'Takoradi', 'Ghana', 'May', 'Comoros', 'Rio Mitong', 'Malabo', 'Equatorial Guinea', 'Djibloho', 'Luba', 'Bioko Island', 'the same month', 'Pacific Warden', 'Luba', 'November 2019', 'seven', '15', 'May 2019', 'Blue Marlin', 'Spanish', 'Equatoguinean', '10', 'LNG', 'Niger Delta', 'MarineSectors', 'Marine', 'Defence', 'forces©', '2020', 'IHS Markit Inc.', 'Cambodian', 'Aun Pornmoniroth', '14 November', 'China', 'Ream Naval Base', 'Sihanoukville', 'the Gulf of Thailand', 'US', 'the Center for Strategic and International Studies', '9 November', 'Cambodia', 'US', 'Chinese', 'Tea Banh', 'Cambodia', 'October', 'Vann Bunlieng', 'Cambodia', 'Nikkei Asia', 'China', 'Ream', 'Chinese', 'July 2019', 'the Wall Street Journal', 'first', 'US', 'China', 'Cambodia', 'Chinese', 'Ream', 'Chinese', 'Koh Kong', 'US', 'Ream', 'Chinese', 'China', 'Ream', 'the US Navy', 'Singapore', 'Chinese', 'Ream', 'China', 'the South China Sea', 'Chinese', 'Sanya', 'Hainan island', 'US', 'China', 'Cambodia', 'Chinese', 'Chinese', 'US', 'Quad', 'India', 'Japan', 'Australia', 'China', 'Cambodia', 'Ream', 'Australia', 'India', 'Japan', 'United States', '2 October 2020', 'Australia', 'Interstate warSectors', '2020', 'IHS Markit Inc.', 'COVID-19', 'Massachusetts', 'COVID-19 Numbers', 'Approximately 172,727', '10,163', 'More than 6,767,987', '105', 'last week', 'Reopening Details', 'COVID-19', 'only 16', 'Massachusetts', '105', 'last week', '16', 'Brockton', 'Chelsea', 'Everett', 'Fall River', 'Fitchburg', 'Lawrence', 'Lowell', 'Lynn', 'Methuen', 'New Bedford', 'Norfolk', 'Revere', 'Seekonk', 'Somerset', 'Springfield', 'Westport', 'Baker', 'COVID-19', '10:00 PM', '5:00 AM', 'Friday, November 6', '9:30 PM', 'ten', '25', '9:30 PM', 'Baker', 'October 5', 'Step Two', 'Massachusetts', 'Two', '50 percent', '250', '50 percent', '50 percent', 'July 6', 'One', '40 percent', '50 percent', 'ten', '40 percent', '14 feet', 'six feet', 'up to 50', 'Monday, September 28', 'six', 'ten', 'six feet', 'Boston', 'Charlie Baker', 'four', 'Start', 'Cautious', 'Vigilant', '14 days', 'COVID-19', 'up to US$ 500', 'California', 'Colorado', 'Connecticut', 'Hawaii', 'Maine', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'Vermont', 'Washington', 'Wyoming', 'Rhode Island', 'CDC', 'Alexander De Croo', 'Belgian', 'the European Parliament', 'Friday 2 October', 'Brussels', 'Nicolas Maeterlinck/Belga Mag/AFP', 'Getty ImagesThe', 'Belgian', 'Alexander De Croo', '1 October', 'seven', 'May 2019', 'seven', 'seven', 'Flemish', 'the Socialist Party', 'PS', 'Socialist Party Differently', 'Socialistische Partij Anders', 'Ecolo', 'Green', 'Groen', 'Christian Democratic', 'Flemish', 'Reformist Movement', 'Open Flemish Liberals', 'Democrats', 'Flemish', 'the New Flemish Alliance', 'N-VA', 'Flemish Interest', '16%', 'nearly 50%', 'May 2019', 'Sophie Wilmès', 'De Croo', '2019', 'COVID-19', 'State', 'Thomas Dermine', 'Belgium', '2008', 'Belgium', '8.7%', 'the current fiscal year', '3.7%', '2021', '8.5%', 'annual', 'COVID-19', '2017', 'COVID-19', '1.9%', '2019', '11.4%', '2020', '8.6%', '2021', 'De Croo', '30 September', '45 years', '2.5%', 'annually', 'third', 'April', 'EUR1 billion', 'EUR1 billion', 'EU', 'Eurostat', '33.6 years', '35.9 years', 'The N-VA', 'Socialists', 'Flemish', 'Thousands', 'Brussels', '25 September', 'N-VA', 'several thousands', 'Brussels', 'two', 'Antwerp', 'up to several days', 'Brussels', 'Louise', 'one', 'EU', 'COVID-19', '2020', 'IHS Markit Inc.', 'the Albany Medical Center', 'New Scotland Ave', 'Holland', 'one-day', 'Tuesday, December 1', 'the New York State Nurses Association', 'COVID-19', 'The Albany Medical Center', 'one-day', 'the day', 'New South Wales', 'the Australian Capital Territory', 'Four', 'Albion Park', 'Ulladulla', 'Dapto', 'New South Wales', 'Newcastle', 'Gosford', 'Sydney', 'Wollongong', 'Orange', 'Tamworth', 'the Sutherland Shire', 'New South Wales State Emergency Services', 'approximately 278', 'the South Coast', 'Campbelltown', 'Macquarie Fields', 'Randolph Avenue', 'Colón City', 'the Ministry of Trade and Industry', '18 November', 'Several hundred', 'the Gwagwalada Area Council of Abuja, Federal Capital Territory', 'FCT', '26 October', 'Nigerian', 'Lagos', 'Jos', 'thousands', '26 October 2020', 'Ojodu Berger', 'Lagos', 'Nigeria', 'Ekpei', '1229296497Youth', '#', 'one-month', 'Nigeria', 'Lagos', 'Abuja', 'Edo', 'Ekiti, Abia,', 'Ondo', 'the Special Anti-Robbery Squad', 'early October', 'Nigeria', '21 October 2020', 'Nigerian', 'Lagos', 'Lagos', 'Abuja', 'Edo', 'Ondo', 'Lagos', 'Delta', 'Lagosian', 'the State Assembly', 'Lekki', 'the Central Bank of Nigeria', 'Abuja', 'Muhammadu Buhari', '20 October–31 December', 'Lagos', 'Abuja', 'Benin City', 'Port Harcourt', '24', '36', 'Lagos', 'Edo', 'Ondo', 'Akwa Ibom', 'Lagos', 'Lekki', '20 October', '27', '30', '31 October', 'at least nine', 'Buhari', 'Nigeria', 'Lagos', 'Black Axe', 'Deybam', 'Mafia', 'Vikings', 'daily', 'Lekki', 'II', '2019', 'COVID-19', 'The National Bureau of Statistics', 'the second quarter', '55.7%', 'Lekki Phase 1', 'Mushin, Yaba, Surulere', 'South African', 'the Reformed Niger Delta Avengers', '#', 'Reformed Niger Delta Avengers', 'Niger Delta', '25 October', 'Operation Crocodile Smile', 'Forcados', 'the Bonny-Nembe Creek Trunk Line', 'NCTL', 'late October', 'Niger Deltan', 'Government Ekpemupolo', 'six years', 'RNDA', 'Nigeria', 'Buhari', 'Adamu Garba', 'Hausa', 'Buhari', 'Lagos', 'Port Harcourt', 'Kano', '#', 'Onitsha', 'Chevron', 'Lekki', 'Edo StateSouthern NigeriaOlaiya Junction', 'Gbongan-Ibadan HighwayOsun StateSouthern NigeriaSource', '2020', 'Christian', 'Enoch Adeboye', 'Sam Adeyemi', 'Aisha Yesufu', 'Folarin Falana', 'Feyikemi Abudu', '#', 'Buhari', '#', '2020', 'IHS Markit Inc.', '2', 'Durban', '16:20', 'November 19', '20:00', 'the same day', '20:40', 'The Islamic Action Front (IAF)', 'the Jordanian Muslim Brotherhood’s', 'five', '15', '10 November 2020', '30%', '36%', '2016', '57%', '2013', 'Parliament', 'King Abdullah II', 'Jordan', '19 October 2020', 'Jordan', 'COVID-19', '2021', 'the Muslim Brotherhood', 'Muslim Brotherhood', 'two years', 'Jordan', '31 July 2020', 'Jordanian', 'COVID-19', 'November', 'IAF', 'the Lower House', 'several thousand', 'Amman', 'Fourth Circle', 'Policy', '2020', 'IHS Markit Inc.', 'Launcheston', 'Portuguese', 'Greek Navy', 'the Piraeus Harbor', 'Two', 'At least 27', 'the Greek Navy', 'navy', 'Maersk', 'Ineos', 'the Port of Antwerp', 'Ineos', 'At least 150', 'October 7', 'the Port of Manila', '3', 'Manila North', '4', 'Manila', '3', 'November 12', 'Manila', 'Typhoon Vamco', 'November 11', 'the Port of Singapore', 'around 1.5 days', 'over 90%', 'Port of Singapore', 'November 13', 'the Philippines Bureau of Customs', 'Manila', 'Laguna', 'Batangas', 'Typhoon Vamco', 'International Container Terminal Services', 'Asian Terminals Inc', 'Laguna Gateway International Container', 'Manila', 'Laguna', 'Batangas', 'November 13', 'the Philippines Bureau of Customs', 'Manila', 'Laguna', 'Batangas', 'Typhoon Vamco', 'International Container Terminal Services', 'Asian Terminals Inc', 'Laguna Gateway International Container', 'Manila', 'Laguna', 'Batangas', 'Port Said Rd', '135th', 'Two', 'October 15', 'Macao Post', 'October 14', 'October 13', 'Tropical Cyclone Nangka', 'Pier 2', '09:30', 'the North Port Passenger Terminal', 'four', 'Port of Manila', 'Radial Rd 10', 'Zaragoza', '200', 'National Rail', 'Ramsgate', 'three', 'four', 'Wednesday', 'afternoon', 'Ramsgate', 'Walmer', 'Ramsgate', 'two', 'London Underground', 'London', '16:00', 'Birmingham New Street', 'Rugeley Trent Valley / Stafford', 'the day', 'West Coast', 'CrossCountry', 'London Northwestern Railway', 'West Midlands Railway', 'National Rail', 'Milton Keynes Central', 'Watford Junction', 'at least 17:00', 'West Coast', 'London Northwestern Railway', 'Southern', 'up to 30 minutes', 'National Rail', 'Surrey Quays', '20:00', 'London Overground', 'Spanish', 'Valencia Province', 'A-7', \"L'Alcúdia\", 'Valencia', 'Sagunto', 'November 24', 'Saudi Aramco', 'November 24', 'North Jeddah Bulk Plant', 'November 23', 'Houthi', 'Yueran Freight Co.', 'S221', 'Jinhai Rd', 'Pudong', 'two', 'the Singapore Strait', 'Cypriot', 'Tina 1', 'Iranian', 'Shahraz', 'roughly six months', 'Cypriot', 'Singapore', 'Jakarta', 'coast guard', 'Ocean Village', 'Southampton', 'St Petersburg', 'the Surrey Quays Shopping Centre', 'London', 'Friday', 'afternoon', 'October 21', 'Port of Ningbo', 'October 22', 'October 19', 'October 23', 'October 21', 'Port of Shanghai', 'China', 'October 22', 'October 19', 'October 23', 'October 8', 'the Port of Yokohama', 'Japan', 'the morning', 'October 10', 'October 11', 'Sydney Harbor Tunnel', 'October 22', 'the Bangladesh Water Transport Workers Federation', 'the Bangladesh Cargo Vessel Owners Association', 'three days', 'Bangladesh Cargo Vessel Owners Association', '5,000', '200,000', 'Hyundai Mipo Dockyard Co.', 'Ulsan', 'Friday, November 13', 'November 25', 'Port of Ho Chi Minh', 'around 2 days', 'October 15', 'the Hong Kong Modern Terminal', 'the Port of Hong Kong', '24 hours to 12 hours', 'the coming days', 'October 9', 'the Hong Kong Modern Terminal', 'the Port of Hong Kong', '12 hours', 'October 10', 'October 28', 'the Guangzhou', 'Oceangate Container Terminal', '12 hours', 'the coming 3 days', 'Port of Durban', '17:30', '22:45', 'October 1', 'November 11', 'Port Klang', 'the West Port', '0.5 days', 'November 4', 'November 4-5', 'DCT Pier 2', 'the Port of Durban', '11:45 to 14:30', 'North Carolina', 'November 11', 'Hurricane Eta', 'several inches', 'Roy Cooper', 'Friday, November 13', '430', 'At least four', '50', 'Alexander County', 'Wayne County', 'at least 12', 'at least 143', 'Charlotte', 'over 30', 'HiddenNite Family Campground', 'Alexander County', 'one', 'the Neue River', 'Kingston', 'November 2', '09:30', '07:00', 'November 2', 'November 26', 'Chennai Port', 'November 24', 'Cyclone Nivar', 'November 26', 'the evening', 'Kamarajar', 'Kattupalli', 'November 26', 'October 30', 'GM', 'KRW 215 billion', '160 million', 'USD 190 million', 'Incheon', 'GM Korea', 'four-hour', 'October 30 and November 2', 'November 9 and 10', 'October 21', 'the Houston Ship Channel', 'second', 'October 21', '07:25', 'October 22', 'October 11', 'the Houston Ship Channel', 'Hurricane Delta', 'Taipei', 'hundreds', '12', 'Hong Kong', 'Taiwan', 'November 16', 'the Sea and Port Sector', 'the General Labor Confederation', 'CGT', '24-hour', 'November 19', 'Barcelona', 'Catalonia', 'seven', 'Shanklin', 'the Isle of Wight', 'today', '25 October', 'The Special Boat Service', 'Lagos', 'Nigeria', 'Southampton', 'England', 'Liberian', 'the Maritime Coastguard Agency', 'three nautical mile', 'November 19', 'COVID-19', 'London Gateway Port', 'recent weeks', 'the end of December', 'London', 'Hapag-Lloyd', 'EUR', '175', 'Far East Asia', 'London', 'November 15', 'CMA CGM', 'USD 100', 'Australia', 'New Zealand', 'November 30', 'Indian', 'the Middle East', 'the Red Sea', 'November 15', 'November 16', 'the Port of Chittagong', 'Singapore', 'Colombo', '5 days', 'Chittagong', '2-4 days', '2 days', 'Singapore', 'the Regional Comprehensive Economic Partnership', '15 November', 'NGUYEN / Contributor/Getty ImagesFifteen Asian', '15 November', 'the Regional Comprehensive Economic Partnership', 'Brunei', 'Cambodia', 'Indonesia', 'Laos', 'Malaysia', 'Myanmar', 'Philippines', 'Singapore', 'Thailand', 'Vietnam', 'the Association of Southeast Asian Nations', 'ASEAN', 'Australia', 'China', 'Japan', 'New Zealand', 'South Korea', 'RCEP', '2.2 billion', 'nearly 30%', 'nine', 'six', 'ASEAN', 'RCEP', 'intra-Asian', '15', 'RCEP', 'FTAs', 'RCEP', '2012', 'RCEP', '2019', 'COVID-19', 'India', 'late 2019', 'intra-Asian', 'Asian Development Bank', '2018', 'about 60%', 'Asian', 'Asia', 'about 40%', 'North America', '65%', 'the European Union', 'RCEP', 'RCEP', 'the Trans-Pacific Partnership', 'TPP', '99%', 'RCEP', '15 to 20 years', 'TPP', 'RCEP', 'RCEP', 'Chinese', 'the next two years', 'RCEP', 'China', '2022', 'Chinese', 'China', 'South Korea', 'FTA', 'China', 'RCEP', 'China', 'ASEAN', 'ASEAN', 'China', 'RCEP', 'RCEP', 'ASEAN', 'USD62-billion', 'China', '2018', 'RCEP', '14', 'two-thirds', 'China', 'RCEP', 'US', 'China', 'RCEP', 'two-year', 'China', 'Asia-Pacific', '16 November', 'Asia-Pacific', 'China', 'Asia-Pacific', '2 April 2019', 'IMF', 'ASEAN', 'ASEAN+1', 'ASEAN', 'the ASEAN Economic Community', '2015', 'Cambodia', 'Laos', 'Myanmar', 'Vietnam', 'six', 'ASEAN', 'ASEAN', 'RCEP', 'membersNegative', '2020', 'Japan', 'China', 'India', 'China', 'RCEP', 'Australia', 'Japan', 'Japan', 'RCEP', 'five', '86%', 'China', '8%', 'Australia', 'Japan', 'China', 'the Supply Chain Resilience Initiative', 'Australia', 'Japan', '27 August 2020', 'Australia', 'Japan', 'India', '2021', 'India', 'RCEP', 'India', 'China', 'about USD60 billion', '2019', 'Chinese', 'India', 'November 2019', 'India', 'Regional Comprehensive Economic Partnership', 'intra-Asia', 'US', 'Joe Biden', '2021', 'Asian', 'the East Asia Summit', 'US', 'Asia-Pacific', 'Trump', 'US', 'Asian', 'Australia', 'Labor', 'RCEP', 'China', 'RCEP', 'Australia', 'RCEP', 'China', 'South China Sea', 'Philippines', 'Vietnam', 'Chinese', 'India', 'Narendra Modi', '2024', '2020', 'IHS Markit Inc.', 'the P&O Pride', 'the River Humber', '260', 'Rotterdam', 'later in the evening', 'Arab Coalition', 'the Red Sea', 'Houthi', 'Yemen', 'MT Agrari', 'the Red Sea', 'the Shuqaiq Steam Power Plant', 'Shuqaiq', 'Saudi Arabia', 'Rotterdam', 'Netherlands', 'the Shuqaiq Steam Power Plant', 'The MT Agrari', 'Maltese', 'Greek', 'The Red Sea', 'November 6', 'November 10', 'the Port of Valencia', 'six-day', 'November 10, 13', '18', '20', '26', '27', 'the Port of Valencia', 'Tropical Storm Nivar', 'Tamil Nadu', 'the Tamil Nadu State Transport Corporation', 'metro', 'Indian', 'Southern Railway', '06011', 'Kanyakumari', 'Hazrat Nizamuddin Thirukkural', 'Hazrat Nizamuddin', 'Kanyakumari Thirukkural', '06188', 'Ernakulam Juncton', 'Karaikal', 'Karaikal', '02624', 'Thiruvananthapuram Central', 'MGR Chennai Central', 'Alappuzha', 'MGR Chennai Central', 'Erode Junction', 'MGR Chennai Central', 'Alappuzha', '02613', '02614', 'Chennai Egmore', 'Madurai', '02635', 'Madurai', 'Chennai Egmore', 'No.02605', '02606', 'Chennai Egmore', 'Karaikudi', 'No.02661', '02662', 'Chennai Egmore', 'Sengottai', 'No.02632', '02631', 'Tirunelveli', 'Chennai Egmore', 'No.02694', '02693', 'Tuticorin', 'Chennai Egmore', '02634', 'Chennai Egmore', 'Kanniyakumari', 'No.06723', '06724', 'Chennai Egmore', 'Kollam', '02205', 'Chennai Egmore', 'No.06101', '06102', 'Chennai Egmore', 'Kollam', 'No.02638', '02637', 'Madurai', 'Chennai Egmore', 'four', 'MGR Chennai Central and Thiruvananthapuram', '02624', 'Thiruvananthapuram Central', 'MGR Chennai Central', 'Alappuzha', 'Alappuzha', 'MGR Chennai Central', 'two', '02642', 'Shalimar and Thiruvananthapuram', 'Gudur Junction', 'Gorakhpur Raptisagar', 'Jolarpettai Junction', 'COVID-19', 'Tokyo Prefecture', 'Tropical Storm Chan-Hom', 'Miyake Village', 'Mikurajima Village', 'Kozushima Village', 'Miyake Village', 'Kamitsuki', 'The Japanese Meteorological Agency', 'Japan', 'Typhoon Chan-Hom', 'Tokushima', 'Kagoshima', 'Miyazaki', 'Oita', 'Hyogo', 'Wakayama, Mie', 'Aichi', 'Shizuoka', 'Tokyo', 'up to 126', '245km', 'Miyazaki', 'Chan-Hom', 'Japan', 'Saturday', '10 October', 'Japan', 'the day', 'Sunday', '11 October', 'October 22', 'the Port of Oakland', 'United States', '24 hours', 'up to', '62,200', 'BC Hydro', 'Western Vancouver', 'the Lower Mainland', 'the Sunshine Coast', 'Taiwan', 'Itbayat Island', 'Philippines', 'approximately 74 miles', 'Kaohsiung City', 'Taiwan', 'two miles per hour', '45 miles per hour', '57 miles per hour', 'Atsani', 'Sunday, November 8', 'the afternoon of', 'Wednesday, October 28', 'Concordia', 'Louisiana', 'Zeta', 'Post-Tropical Cyclone Zeta', '55 miles per hour', 'up to 50 miles per hour', '55 miles per hour', 'up to', '310 miles', 'Three', 'Biloxi', 'Mississippi', 'second', 'New Orleans', 'Louisiana', 'third', 'Cherokee County', 'Georgia', 'Louisiana', 'Mississippi', 'Alabama', 'North Carolina', 'Virginia', 'Delmarva Peninsula', 'the next couple of hours', 'Zeta', 'the Mid-Atlantic', 'this evening', 'The Tropical Storm Risk', 'Yellow Alert', 'Atlantic City', 'NJ', 'Salisbury', 'MD', 'Kitty Hawk', 'NC', 'Hatteras', 'NC', 'Yellow Alert', 'Providence', 'RI', 'Boston', 'MA', 'New York', 'NY', 'Chatham', 'MA', 'Montauk', 'MA', 'Siasconset', 'MA', 'Belmar', 'NJ', 'nine hours', 'Yellow Alert', '10–30 percent', 'at least Category 1', 'greater than 50 percent', 'Tropical Depression Vamco', 'Ulysses', 'Philippines', 'Laos', 'Vietnam', 'approximately 17 miles', 'Dong Hoi', 'Sunday, November 15', 'Vietnam', 'Vamco', 'at least 19', 'six', '5,755', 'At least 17', 'Typhoon Vamco', 'six', 'Vietnamese', 'Quang Binh', 'Quang Tri', 'Thua Thien Hue', 'Da Nang', 'Quang Nam', 'Quang Ngai', 'approximately 468,000', 'Philippines', 'at least 69', '52', '12', 'Philippines', 'The Philippine Coast Guard', 'around 2,000', 'the Bicol Region', 'Eastern Visayas', 'Southern Tagalog', 'the National Capital Region', 'NCR', 'Typhoon Vamco/Ulysses', 'Philippines', 'October and November', 'Manila', '24', '29', 'Hurricane ZETA-20', '175 km', 'October 30', 'the U.S. National Hurricane Center', 'NHC', 'Post-Tropical Storm Zeta', 'the Mid-Atlantic Coast', 'the Western Atlantic', 'North Carolina', 'Virginia', 'Delmarva Peninsula', 'the next couple of hours', 'At least 200,000', 'Bangladesh', '12:00 AM', 'Tuesday, October 20', 'the Bangladesh Water Transport Workers Federation', 'the Bangladesh Lighterage Workers Union', 'About 20', 'Narayanganj', 'Chattogram', 'Khulna', 'Mongla', 'Chennai', 'Tropical Storm Nivar', 'The Port of Chennai', 'Thursday', 'Kamarajar', 'Kattupalli', 'Houthi', 'Quds-2', 'Saudi Aramco Distribution', 'Jeddah', 'Houthi', 'Saudi Arabia', 'Saudi', 'Yemen', 'Saudi', 'October 30', 'Kansas City Southern', 'Mauriceville', 'TX', 'October 31', 'October 29', '25', '5', '4', '1', '10', 'about 48 to 72 hours', \"the Orange County Sheriff's Office\", 'Nearly 600', 'Highway 12', '1078', '1130', 'North American', 'Kansas City Southern', 'KCS', 'Houston', 'Milton Keynes Central', 'Watford Junction', 'the day', 'West Coast', 'London Northwestern Railway', 'EDSA', 'Metro Manila', 'Manila', 'Monday, November 2', 'Typhoon Goni', 'Metro Manila', 'Typhoon Vamco', 'Quezon City', 'Navotas', 'Valenzuela', 'Parañaque', 'Caloocan', 'Las Piñas', 'Makati', 'Manila', 'Pasay', 'Imus, Rosario,', 'Bacoor', 'Cavite City', 'the Woodbridge Station', 'Pearl St', 'Brook St. Eight', 'New Jersey Transit', 'North Coast Line', 'Penn Station', 'New York', 'Lotte Global Logistics', 'More than 250', 'Seoul', 'Gyeonggi Province', 'Ulsan', 'South Gyeongsang Province', 'Seoul', 'October 22', 'the Port of Vancouver', '11-12 days', '4 days', 'November', '04', '10', 'Hurricane DELTA-20', '231 km', 'U.S.A.', 'West Virginia', 'October 11', 'October 9', 'evening', 'Creole', 'Louisiana', '100 mph', '04', '12', 'Typhoon CHAN-HOM-20', '148 km', 'October 11', 'Typhoon Chan', 'Japans', 'the Pacific Ocean', 'Hachijojima', 'October 12', 'Honshu', 'The Japan Meteorological Agency', 'Honshu', 'Kansai', 'Kanto', 'Tokai', 'Kyushu', 'the Izu Islands', 'Osaka', 'Nara', 'Aichi', 'BC Hydro', 'Vancouver Island', 'Colwood', 'Langford', 'Metchosin', 'Duncan', 'View Royal', 'Sooke', 'Victoria', 'Nanaimo', 'Qualicum Beach', '19,000', 'BC Hydro', 'Vancouver Island', 'the Lower Mainland', 'Sunshine Coast', 'Victoria', 'Port Fairy', 'Warrnambool', 'Allansford', 'Rail', 'RMT', 'Sunday, October 11', 'Monday, October 12', 'London Euston', 'Fort William', 'October 11', 'October 12', 'Sleeper Lowland', 'London Euston', 'Edinburgh', 'October 11', 'October 12', 'Sunday, October 4', 'Monday, October 5', 'two-day', 'Rail', 'RMT', 'Commuters', 'at least 20', 'Typhoon Goni', 'Sunday', '1 November', '190mph', '306kph', 'Manila', '13,000', 'Catanduanes', '16-foot', 'Around 90 percent', 'Catanduanes', 'Luzon', 'more than 300,000', '50,000', 'around 300', 'Albay', 'the Bicol Region', 'Mayon', 'Three', 'Atsani', 'the Pacific Ocean', 'Philippines', 'the coming days', 'three-day', 'Thursday, October 8', 'the national trade union', 'Konfederasi Serikat', 'Indonesia', 'Indonesian Trade Union Confederation', 'KSPI', \"Confederation of All Indonesian Workers' Union\", 'KSPSI AGN', 'KSPSI Yorrys', 'Tangerang', 'Jakarta', 'Bogor', 'Karawang', 'Bekasi', 'Purwakarta', 'Bandung', 'Subang', 'Lampung', 'Gresik', 'Surabaya', 'Batam', 'as high as five million', 'Eta', 'the Atlantic Ocean', 'St. Petersburg', 'Sarasota', 'Madeira Beach', 'North Carolina', 'at least seven', 'dozens', 'Florida', 'Georgia', 'North Carolina', 'Cebu City', 'Mandaue', 'recent days', 'Three', 'Sitio San Jose', 'Barangay Maguikay', 'early Wednesday, October 14', 'ten', '60', '26', 'Barangay', 'Umapad', 'Umapad Elementary School', '309', '283', 'Barangay Pulangbato', 'More than 3,000', 'Pulangbato', 'Umapad', 'Maguikay', 'Tabok', 'Mandaue City', 'Cebu', 'BC Hydro', 'Vancouver', 'Vancouver Island', 'October 22', 'the Songyu Container Terminal', 'the Port of Xiamen', 'China', '24 hours', 'the coming 3 days', 'Hurricane Eta', 'more than 73,600', 'at least 41,000', 'Honduran', 'Permanent Contingency Commission', 'the Sula Valley', 'Choloma', 'Gracias', 'Dios', 'Monday', 'the US Consulate General', 'Chennai', 'Weather Alert', 'Puducherry', 'Tamil Nadu', 'the Bay of Bengal', 'Tamil Nadu', 'November 25, 2020', 'the Regional Specialized Meteorological Centre for Tropical Cyclones Over', 'North Indian Ocean', 'as early as November 24, 2020', 'U.S.', 'The U.S. Consulate General Chennai', 'U.S.', 'Wednesday, November 25, 2020', 'Thursday, November 26, 2020', 'Consulate', 'Friday, November 27, 2020', 'U.S.', 'Notify', 'Tuesday', 'the US Consulate General', 'Chennai', 'Weather Alert', 'the southeast Bay', 'Bengal', 'the South Andaman Sea', 'Tamil Nadu', 'December 2, 2020', 'the Regional Specialized Meteorological Centre for Tropical Cyclones Over', 'North Indian Ocean', 'as early as December 1, 2020', 'Thanjavur', 'Kanyakumari', 'the State of Tamil Nadu', 'December 1 through December 3, 2020', 'India', 'The U.S. Consulate General Chennai', 'U.S.', 'Notify', 'Monday', 'the US Embassy', 'Kuala Lumpur', 'August 28, 2020', 'the Recovery Movement Control Order', 'RMCO', 'December 31, 2020', 'The Malaysian Ministry of Defense', 'August 1, 2020', 'RMCO', 'RM', '1,000', 'USD $', '235', 'Conditional Movement Control Orders', 'RMCO', 'COVID-19', 'Conditional Movement Control Order', 'CMCO', 'November 7', 'CMCO', 'Selangor', 'Kuala Lumpur', 'Putrajaya', 'Sabah', 'CMCO', 'December 6', 'CMCO', 'Kedah', 'Perak', 'Pulau Pinang', 'Melaka', 'Johor', 'Terengganu', 'Only two', 'Mosques', 'non-Muslim', 'Sabah', 'Sarawak\\n\\nAdditional', 'East Malaysian', 'Sabah', 'Sarawak', 'Sabah', 'Sarawak', 'October 9', 'October 10', 'COVID-19', 'fourteen-day', 'Sarawakians', 'Sabah', 'December 6', 'Monday', 'the US Embassy', 'Tokyo', 'November 16, 2020', 'COVID-19', 'Japan', 'The U.S. Embassy', 'COVID-19', 'Japan', 'Japan', 'Japanese', 'third', 'Japanese', '1', 'mid-October', 'seven-day', '951', 'November 9', '20%', 'two weeks ago', 'the colder months', 'U.S.', 'The U.S. Centers for Disease Control and Prevention', 'CDC', 'U.S.', 'U.S.', 'Japanese', 'COVID-19', 'The Hokkaido Prefectural Government', 'COVID-19', 'Three', 'five', 'November 7', 'Sapporo', 'Susukino', '10:00 p.m.', '10:00 p.m.', '10:00 p.m.', 'Okinawa', '3', 'COVID-19', 'recent daily', 'Tamaki', 'more than two hours', 'COVID-19', 'Okinawa', 'Japanese', 'Japan', 'U.S.', 'Japanese', 'U.S.', 'Japan', 'Japan', 'the Japanese', 'Ministry of Foreign Affairs', 'the Ministry of Justice', 'The U.S. Embassy', 'U.S.', 'Japan', 'the Government of Japan', 'The U.S. Embassy’s', 'Japan', 'Japanese', 'the United States', 'U.S.', 'United States Forces Japan', 'the end of 2020', 'Twitter', 'https://twitter.com/acstokyo', 'Facebook', 'https://jp.usembassy.gov/health-alert-nov16-2020/', 'Friday', 'the US Embassy', 'Kuala Lumpur', 'Malaysia', 'August 28, 2020', 'the Recovery Movement Control Order', 'RMCO', 'December 31, 2020', 'RMCO', 'Embassy', 'The Malaysian Ministry of Defense', 'August 1, 2020', 'RMCO', 'RM', '1,000', 'USD $', '235', 'Conditional Movement Control Order', 'RMCO', 'COVID-19', 'Conditional Movement Control Order', 'CMCO', 'October 7, 2020', 'Malaysian', 'CMCO', 'two weeks', 'October 9', 'Selangor', 'Klang District', 'Port Klang', 'Sabah', 'Sandakan', 'Papar', 'CMCO', 'Schools', 'hours', 'only two', 'Sabah', 'Sarawak\\n\\nAdditional', 'East Malaysian', 'Sabah', 'Sarawak', 'Sabah', 'Sarawak', 'October 9', 'October 10', 'COVID-19', 'fourteen-day', 'Sarawakians', 'Sabah', 'Peninsular Malaysia', 'Sarawak', 'Labuan', 'October 12', 'October 25', 'Malaysian', 'September 18', 'the Immigration Department', 'Malaysia', 'Malaysia', 'the Immigration Department', 'Malaysia', 'the September 7', '2020', '23', 'the United States', 'Malaysia', 'September 18', 'Residence Pass-Talent', 'Employment Pass (Category EP I', 'Dependent Pass', 'Long Term Social Visit Pass', 'Malaysia', 'October 8', 'Malaysian Immigration', 'My Travel Pass', 'Malaysia', 'MCO', 'Travelers', 'the Malaysian Government', 'Malaysia', 'October 4', 'Malaysian Immigration', 'December 31, 2020', 'Malaysia', 'My Second Home Holders', 'Embassy', 'September 7', 'U.S.', 'October 5', 'Malaysian Immigration', 'the Ministry of Tourism, Arts', 'Quarantine and Testing Information', 'Malaysia', 'RMCO', 'COVID-19', 'fourteen-day', 'Malaysian', 'COVID-19', 'Travelers', 'MySejahtera', 'the Malaysian National Disaster Management Agency', 'NADMA', 'Tuesday', 'the US Embassy', 'Tokyo', 'COVID-19', 'Japan', 'The U.S. Embassy', 'COVID-19', 'Japan', 'Tokyo', 'daily', 'December 17', 'Tokyo', 'Koike', 'Tokyo', 'first', 'May', 'Tokyo', 'as many as 80 percent', 'the New Year', 'COVID-19', 'December 28 through January 11', 'Koike', 'the New Year', 'The U.S. Embassy', 'U.S.', 'Japan', 'U.S.', 'Japanese', 'COVID-19', 'The Government of Japan', 'COVID-19', 'U.S.', 'The U.S. Centers for Disease Control and Prevention', 'CDC', 'U.S.', 'U.S.', 'New Year', 'U.S.', 'Mission Japan', 'U.S.', 'Japanese', 'COVID-19', 'The United States Government', 'COVID-19', 'U.S.', 'COVID-19', 'the Japanese Government', 'U.S.', 'Japan', 'United States', 'Japan', 'The U.S. Congress', 'The U.S. Embassy', 'Tokyo', 'the Internal Revenue Service', 'Japanese', 'U.S.', 'Japan', 'the Japanese', 'Ministry of Foreign Affairs', 'the Ministry of Justice', 'The U.S. Embassy', 'U.S.', 'Japan', 'the Government of Japan', 'The U.S. Embassy’s', 'Japan', 'Japanese', 'the United States', 'U.S.', 'Japan', 'The U.S. Embassy', 'Twitter', 'https://twitter.com/acstokyo', 'Facebook', 'https://jp.usembassy.gov/health-alert-december-22-2020/', 'Friday', 'the US Embassy', 'Tokyo', 'COVID-19', 'Japan', 'The U.S. Embassy', 'COVID-19', 'Japan', 'Tokyo', 'Osaka', 'Hokkaido', 'Aichi', 'Kanagawa', 'Chiba', 'this week', 'The Government of Japan', 'Hokkaido', 'Tokyo', 'Osaka', 'Aichi', 'Hokkaido', 'Tokyo', 'November 19', 'Koike', 'COVID-19', 'Hokkaido', 'Japan', 'U.S.', 'The Government of Japan', 'COVID-19', 'Suga', 'Koike', 'Diners', 'the holiday season', 'Koike', 'five', 'COVID-19', 'U.S.', 'The U.S. Centers for Disease Control and Prevention', 'CDC', 'U.S.', 'U.S.', 'Japanese', 'COVID-19', 'Japanese', 'U.S.', 'Japan', 'Japan', 'the Japanese', 'Ministry of Foreign Affairs', 'the Ministry of Justice', 'The U.S. Embassy', 'U.S.', 'Japan', 'the Government of Japan', 'The U.S. Embassy’s', 'Japan', 'Japanese', 'the United States', 'U.S.', 'United States Forces Japan', 'the end of 2020', 'Twitter', 'https://twitter.com/acstokyo', 'Facebook', 'https://jp.usembassy.gov/health-alert-nov20-2020/', 'Tuesday', 'the US Embassy', 'Singapore', 'Weather Alert', 'Pacific Ocean', 'Indian Ocean', 'the South Pacific Ocean', 'November 1, 2020', 'April 30, 2021', 'The National Oceanic and Atmospheric Administration', 'NOAA', 'the upcoming season', 'the National Oceanic and Atmospheric Administration’s', 'NOAA', '2021', 'the Department of State’s', 'Typhoons', 'Cyclones', 'U.S.', 'https://travel.state.gov/content/travel/en/international-travel/before-you-go/your-health-abroad/insurance-providers-overseas.html', 'Thursday', 'the US Embassy', 'Manila', 'Weather Alert', 'Tarlac', 'Zambales', 'Bataan', 'Pampanga', 'Bulacan', 'Metro Manila', 'Typhoon Ulysses', 'the U.S. Embassy', 'Manila', '12 noon', 'today, November 12, 2020', 'Embassy', 'the American Citizen Services', 'Embassy', 'the Philippine Atmospheric, Geophysical and Astronomical Services Administration', 'http://www.pagasa.dost.gov.ph', 'Monday', 'the US Embassy', 'Hanoi', 'Central Mainland Provinces', 'Typhoon Molave', 'Vietnam', 'The U.S. Embassy', 'Hanoi', 'Ho Chi Minh City', 'U.S.', 'Typhone Molave', 'Wednesday, October 28th', 'Da Nang', 'Phu Yen', '90 mile per hour', 'Vietnam', 'Vietnam', 'approximately June 1 through the end of November', 'November 1 to April 30', 'U.S.', 'Vietnam', 'the Smart Traveler Enrollment Program', 'STEP', 'U.S.', 'the Vietnam National Center for Hydro-Meteorological Forecasting', 'U.S.', 'the United States', 'Enroll', 'the Smart Traveler Enrollment Program', 'U.S.', 'first', 'first', 'the United States', 'Twitter', 'U.S. Department of State,', 'Bureau of Consular Affairs Emergencies Abroad', 'U.S.', 'the United States', 'U.S. Department of State,', 'Bureau of Consular Affairs Natural Disasters', 'U.S. Federal Emergency Management Agency', 'FEMA', 'American Red Cross', 'the International Federation of Red Cross', 'Red Crescent Societies', 'Friday', 'the United States', 'Tokyo', 'COVID-19', 'Japan', 'The U.S. Embassy', 'COVID-19', 'Japan', 'Tokyo', 'Osaka', 'Hokkaido', 'COVID-19', 'hours', 'Sapporo', 'Osaka', 'Tokyo', 'Koike', '65', 'U.S.', 'Japanese', 'COVID-19', 'December 3', 'Osaka', '70%', 'U.S.', 'Osaka', 'COVID-19', 'Aichi Prefecture', 'COVID', 'November 19', 'second', 'four', 'third', 'late October', 'Tokyo', 'Osaka', 'Hokkaido', 'The Government of Japan', 'COVID-19', 'Japan', 'third', 'COVID-19', 'daily', 'early November', 'the past month', 'daily', 'December 4 with 45', 'September 17', 'nine tons', '180,000', 'USD 25,920', 'EUR', '21,960', 'Songgang Street', 'Shenzhen', 'Guangdong province', 'The United States', '6.3', '4km', 'Calatagan', 'Friday', '25 December', '114km', 'USGS', 'United States', 'U.S.', 'USGS', 'Mw', 'ML', 'Mw', 'December 10', 'the Valencian Association of Farmers', 'December 14 to 20', 'Interstate 5', 'Sylmar', 'Los Angeles', 'Thursday', 'morning', 'Roxford Street', 'Interstate 405', 'the Sydney Harbour Bridge', 'Monday', '21 December', 'only one', 'today', 'M1', 'Sydney', 'Sydney Airport', 'Sydney Harbour Bridge', 'July 6', 'the Port of Melbourne', '2-3 days', 'Intelligence', 'Everstream Analytics', 'HIMALAYA EXPRESS', 'Port of Nhava Sheva', 'December 22-23', 'Port of Mundra', 'December 26-28', 'December 11', '5-7 days', 'the Port of Melbourne', '8-9 days', 'weeks', 'the holiday period', 'January 2021', 'October 1', 'Port Botany', '3 days', 'Patrick', 'the Port of Fremantle', 'October 1', 'Port Botany', '8-9 days', 'Patrick', 'the Port of Brisbane', 'October 1', 'Port Botany', '9-10 days', 'Patrick', 'the Port of Melbourne', 'Intelligence', 'Everstream Analytics', 'YM Upward', 'Nhava Sheva', 'Busan', 'Shanghai', 'Ningbo Ports', 'Nhava Sheva', 'November 16', 'November 18', 'Intelligence', 'Everstream Analytics', 'YM Upward', 'Nhava Sheva', 'Busan', 'Shanghai', 'Ningbo Ports', 'Nhava Sheva', 'November 16', 'November 18', 'December 17', '12 hours', 'the Qingdao Qianwan Container Terminal', 'December 18', 'Vietnam', 'VNR', 'Vietnam Railway Agency', 'Typhoon Molave', 'October', 'Typhoon Ulysses', 'November', 'Hanoi', 'Ho Chi Minh City', 'Lang Co', 'Zhao Tri', 'Dieu Tri', 'My Chanh', 'Pho Trach', 'Vietnam', \"Haiphong People's Committee\", 'USD5.09bn', 'Exxon Mobil Corp', '2027', 'Northam', 'December 15', 'Virginia', 'the Virginia Emergency Operations Center', 'the Virginia Emergency Support Team', 'the State Coordinator of Emergency Management', 'October 26', 'the VTE Terminal', 'the Port of Genoa', 'the morning', 'October 26', 'one', 'W Oakland Park Blvd', 'Oakland', 'December 9', 'the Port of Callao', '3 hours', 'COVID-19', 'November 11', 'the Port of Callao', '4 hours', 'COVID-19', 'January 27', 'the Port of Savannah', '36-72 hours', '42 hours', 'week 1, 50 hours', 'week 2 and 77 hours', 'week 3', '7', 'October 2', 'the Port of Vancouver', '7-8 days', 'Centerm', 'this weekend', '5 days', 'mid-November', 'August 17', 'the Port of Shanghai’s', 'East Container Terminal', '1.5 days', '0.5 days', 'August 19', 'February 4', 'the Houston Ship Channel', 'the Port of Houston', '12-24 hours', 'January 20', 'the Port of Vancouver', '7 days', '98 percent', 'Vessel', 'January', 'December 31', 'the Port of Oakland', '1-3 days', 'Dec 29', '58', 'a period of 3 months', '4', 'January 5', 'the Port of Santos', '12-18 hours', 'October 22', 'the Port of Los Angeles', 'United States', '24 hours', 'January 8', 'the Port of Ho Chi Minh', 'Cat Lai', 'December 15', 'up to 12 hours', 'the Port of Manzanillo', 'December 7', 'the Songyu Container Terminal', 'the Port of Xiamen', 'China', '12 hours', 'the coming 3 days', 'November 4', 'the Port of Houston', '0 to 36 hours', 'the week', 'November 11', 'the Qingdao Qianwan Container Terminal', '12 hours', 'the coming 3 days', 'December 7', '12 - 24 hours to 12 hours', 'the Qingdao Qianwan Container Terminal', 'the coming 3 days', 'November 23', 'the Guangzhou', 'Oceangate Container Terminal', '6 hours', 'January 11', '0-8 hours', \"last week's\", 'SAV', 'October 19', 'Baloch Colony', 'Karachi', 'Iqra University', 'December 28', 'German', 'Billstrasse', 'Hamburg', 'Germany', '23:45', 'December 28', 'Barcelona', 'Catalonia', 'Spain', 'Supreme Court', 'Catalonia', 'Plaza Sant Jaume', 'Barcelona', '29 September', '2019', 'COVID-19', 'several hundreds', 'Arran', 'CRD', 'Barcelona', 'Vox', 'Catalonia', 'French', '2020', 'IHS Markit Inc.', 'Indonesia', 'KSPI', '28 September', '5 million', '6–8 October', '8 October', 'daily', '29 September', '8 October', 'last-minute', 'Bandung', 'Greater Jakarta', 'Medan', 'Surabaya', '2020', 'IHS Markit Inc.', 'the end of 2020', 'Tens of thousands', 'Warsaw', 'Marszalkowska', 'Aleje Jerozolimskie', 'up to several hours', 'the Constitutional Court', 'PiS', 'Jarosław Kaczynski', 'Kraków', 'Gdańsk', 'Polish', '2020', 'IHS Markit Inc.', 'the next week', 'the Job Creation Law', '5 October', 'Jakarta', 'Surabaya', 'Bandung', 'Medan', '2020', 'IHS Markit Inc.', 'Tens of thousands', 'daily', 'Warsaw', 'Poland', 'the Constitutional Court', '22 October', 'Polish', 'between a few hundred and a few thousand', 'Europe', 'London', 'Rome', 'Madrid', 'Berlin', 'Copenhagen', 'Bratislava', 'Polish', 'Polish', '2020', 'IHS Markit Inc.', 'The Women’s Strike (Strajk Kobiet', 'Warsaw', '28 November', '102nd', 'Polish', 'Tens of thousands', 'the Ministry of Internal Affairs', 'Rondo Dmowskiego', '14:00', 'Warsaw', 'Marszalkowska', 'Aleje Jerozolimskie', 'up to several hours', 'Kraków', 'Gdańsk', 'Polish', '2020', 'IHS Markit Inc.', 'USB', 'Osp Filt-Cgil', 'Faisa-Cisal', 'Confail', '25 November', 'four hours', 'Italy', 'the day', 'Milano Centrale', 'Roma Termini', 'Milan Malpensa', 'MXP', 'Rome Ciampino', 'CIA', 'the Port of Genoa and Port of Gioia Tauro', 'Italian', '2020', 'IHS Markit Inc.', 'Pier 2', 'Port of Durban', '23:00', 'October 18', 'December 1', 'Durban Container', 'Pier 2', '09:30', 'December 1', '02:30', '06:10', 'December 1', 'December 17', '2', 'Port of Durban', '06:30', 'December 17', 'October 13', 'Pier 2, Port of Durban', '00:30', 'the previous day', 'Typhoon', '3', 'Typhoon Saudel', 'Saturday', '24 October', 'Typhoon Saudel', 'Hong Kong', 'Friday', 'evening', 'about 500km', 'Friday night', 'Saturday', 'The Bureau of Meteorology', 'New South Wales', 'Thursday', 'the Sydney Metropolitan Area', 'the Hunter Valley', 'Gosford', 'Sydney', 'Parramatta', 'Wyong', 'Woy Woy', 'Wollombi', 'Kulnura', 'Strong Wind Warnings', 'Byron Coast', 'Macquarie Coast', 'Hunter Coast', 'Illawarra Coast', 'Batemans Coast', 'Eden Coast', 'The Hong Kong Observatory', 'Tropical Storm Nangka', 'The Hong Kong Observatory', '13 October', 'Nangka', 'China', 'Earlier today', '41', '62', '19:00', 'Monday', 'Nangka', 'about 470km', 'Hong Kong', 'about 22', 'Hainan Island', 'the International Longshore and Warehouse Union', '502', 'Westshore Terminal', 'Vancouver', 'December 19', 'Roberts Bank', 'Vancouver', 'Teck Resources', 'December 19', 'the Neptune Terminals', 'North Vancouver', 'the Ridley Terminals', 'several months', 'January 2020', 'Monte De La Muela', 'approximately nine kilometres', 'Cartagena', 'today', '27 November', 'Santa Ana', 'Southern California', 'this week', 'all week', 'up to 65 miles per hour', 'the end of the week', 'Los Angeles', 'Ventura', 'this week', 'Southern California Edison', 'SCE', 'SCE', 'Santa Ana', 'Southern California', 'the fall months', 'December', 'Southern California', 'this week', 'last week', 'over 8,000', 'SCE', 'Thanksgiving Day', 'December', 'wildfire season', 'California', 'December 2017', 'the Thomas Fire', 'over 281,000 acres', 'Ventura', 'Santa Barbara', 'California', 'five-day', 'Santa Ana', 'over 1,000', 'hundreds of thousands', 'SCE', 'Southern California', 'Cal Fire', 'PSPS', 'SCE', 'November 11', 'the Port of Durban', 'November 13', 'October 15', 'Port Phillip', 'West Coast', 'Central Coast', 'East Gippsland Coast', 'October 16', 'West Coast', 'Central Coast', 'Central Gippsland Coast', 'East Gippsland Coast', 'October 23', 'the Port of Le Havre', 'October 24', '05:00', 'October 25', 'October 23', 'the Port of Rotterdam', 'October 24', '11:00', 'October 25', 'Intelligence', 'Everstream Analytics', 'Gail', 'mid-Atlantic', 'Northeast', 'December 16', 'winter', 'Northeast', 'New England', 'New York City', 'Philadelphia', 'The National Weather Service', 'winter', 'winter', 'New England', 'mid-Atlantic', 'Appalachians', 'Winter', 'New York City', 'New England', 'December 16', 'the United States', 'Several inches', 'New York', 'Pennsylvania', 'Maine', 'Massachusetts', 'Connecticut', 'New Hampshire', 'Maryland', 'West Virginia', '3 January', 'December 7', 'Svitzer Australia', 'the Maritime Union of Australia', 'Geelong, Westernport', 'Melbourne', 'Geelong', '24-hour', '12:01', 'December 4', '12:01', 'December 10', 'Svitzer', 'Geelong', 'Westernport', 'Melbourne', '12:01', 'December 4', '23:59', 'January 3, 2021', 'December 14', 'the DP World Terminal', 'the Port of Fremantle', 'Australia', '24-hour', '06:00', 'December 12', 'November 17', 'Dutch', 'Ertsoverslagbedrijf Europoort C.V.', 'the Port of Rotterdam', 'EECV', 'the coming days', 'the Port of Rotterdam']\n" + ] + } + ], + "source": [ + "#put all the entity into a list of str\n", + "documents = []\n", + "for tup in entities:\n", + " for en in tup:\n", + " documents.append(en[0])\n", + " \n", + "print(documents)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "265d0a7c", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from wordcloud import WordCloud\n", + "import matplotlib.pyplot as plt\n", + "# Combine all the documents into a single string\n", + "text = ' '.join(documents)\n", + "\n", + "# Generate a word cloud\n", + "wordcloud = WordCloud(width=800, height=400, background_color='white').generate(text)\n", + "\n", + "# Display the generated word cloud using matplotlib\n", + "plt.figure(figsize=(10, 5))\n", + "plt.imshow(wordcloud, interpolation='bilinear')\n", + "plt.axis('off')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8243d89d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "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.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}