From 0c95c282da921d4563501dc372210243c8f2ffde Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Mon, 10 Dec 2018 20:19:37 +0100 Subject: [PATCH 01/10] added env instructions --- .gitignore | 1 + README.md | 16 ++++++++++++++++ secrets.py | 10 ++++++---- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0d55a41..df216a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Compiled python modules *.pyc +.env # Secrets python file /secrets.py diff --git a/README.md b/README.md index 8aed9a1..8e030e6 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,22 @@ You will need the following python packages installed: tweepy, ascii_graph, tqdm pip install -r requirements.txt ``` +put these into `.env` + +```sh +TWITTER_CONSUMER_SECRET=xxxxxx +TWITTER_CONSUMER_KEY=xxxxxx +TWITTER_ACCESS_TOKEN=xxxxxx +TWITTER_ACCESS_TOKEN_SECRET=xxxxxx +``` + +then load the .env file and your keys are now present + +```sh +source source .env +``` + + ### Usage diff --git a/secrets.py b/secrets.py index ac0102b..0eea362 100755 --- a/secrets.py +++ b/secrets.py @@ -1,9 +1,11 @@ +import os # Go to https://apps.twitter.com/ and create an app. # The consumer key and secret will be generated for you after -consumer_key="xxxxxxxxxxxxxx" -consumer_secret="xxxxxxxxxxxxx" +consumer_key=os.getenv('TWITTER_CONSUMER_KEY') +consumer_secret=os.getenv('TWITTER_CONSUMER_SECRET') # After the step above, you will be redirected to your app's page. # Create an access token under the the "Create New App" section -access_token="xxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx" -access_token_secret="xxxxxxxxxxxxxxxxxxxxxxx" +access_token=os.getenv('TWITTER_ACCESS_TOKEN') +access_token_secret=os.getenv('TWITTER_ACCESS_TOKEN_SECRET') + From 168541d2b8f4eb2da4c53176824f2130604767d9 Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Mon, 10 Dec 2018 20:58:22 +0100 Subject: [PATCH 02/10] added docker --- Dockerfile | 26 ++++++++++++++++++++++++++ Makefile | 36 ++++++++++++++++++++++++++++++++++++ README.md | 9 +++++++++ 3 files changed, 71 insertions(+) create mode 100644 Dockerfile create mode 100644 Makefile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..56ea7ec --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +FROM python:3-alpine + +# +# Handle the env info +# +ARG BUILD_COMMIT_SHA1 +ARG BUILD_COMMIT_DATE +ARG BUILD_BRANCH +ARG BUILD_DATE +ARG BUILD_REPO_ORIGIN + +ENV BUILD_COMMIT_SHA1=$BUILD_COMMIT_SHA1 +ENV BUILD_COMMIT_DATE=$BUILD_COMMIT_DATE +ENV BUILD_BRANCH=$BUILD_BRANCH +ENV BUILD_DATE=$BUILD_DATE +ENV BUILD_REPO_ORIGIN=$BUILD_REPO_ORIGIN + +RUN apk add --update alpine-sdk + +WORKDIR /src + +ADD . /src + +RUN pip install -r requirements.txt + +ENTRYPOINT ["python", "tweets_analyzer.py"] diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e501dd --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +.PHONY: all build login push run + +NAME := 'tweets_analyzer' +REGISTRY := 'registry.hub.docker.com' +TAG := $$(git log -1 --pretty=%h) +VERSION := ${NAME}:${TAG} +LATEST := ${NAME}:latest + +BUILD_REPO_ORIGIN=$$(git config --get remote.origin.url) +BUILD_COMMIT_SHA1:=$$(git rev-parse --short HEAD) +BUILD_COMMIT_DATE:=$$(git log -1 --date=short --pretty=format:%ct) +BUILD_BRANCH:=$$(git symbolic-ref --short HEAD) +BUILD_DATE:=$$(date -u +"%Y-%m-%dT%H:%M:%SZ") + + +all: build login push + + +build: + docker build -t ${LATEST} -t ${VERSION} -t ${REGISTRY}/${LATEST} -t ${REGISTRY}/${VERSION} \ + --build-arg BUILD_COMMIT_SHA1=${BUILD_COMMIT_SHA1} \ + --build-arg BUILD_COMMIT_DATE=${BUILD_COMMIT_DATE} \ + --build-arg BUILD_BRANCH=${BUILD_BRANCH} \ + --build-arg BUILD_DATE=${BUILD_DATE} \ + --build-arg BUILD_REPO_ORIGIN=${BUILD_REPO_ORIGIN} \ + . + +login: + docker login ${REGISTRY} + +push: + docker push ${REGISTRY}/${VERSION} + docker push ${REGISTRY}/${LATEST} + +run: + docker run --rm -it --env-file ${PWD}/.env ${LATEST} \ No newline at end of file diff --git a/README.md b/README.md index 8e030e6..83eedc2 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,15 @@ optional arguments: --no-retweets does not evaluate retweets ``` +### Docker + +```sh +# will build the docker image and tag it +make build +# will run it so you can append tags +make run -n x0rz --friends +``` + ### Example output ![Twitter account activity](https://cdn-images-1.medium.com/max/800/1*KuhfDr_2bOJ7CPOzVXnwLA.png) From 6bdcd8b7bdd4630f56da3219b66e389c6931c5ec Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Mon, 10 Dec 2018 21:12:21 +0100 Subject: [PATCH 03/10] better --- Dockerfile | 2 +- README.md | 2 +- secrets.py | 9 ++++----- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 56ea7ec..ed064ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3-alpine +FROM python:3.6-alpine # # Handle the env info diff --git a/README.md b/README.md index 83eedc2..15a9674 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ optional arguments: # will build the docker image and tag it make build # will run it so you can append tags -make run -n x0rz --friends +docker run --rm -it --env-file ${PWD}/.env -v $PWD:/src tweets_analyzer:latest -n x0rz --friends ``` ### Example output diff --git a/secrets.py b/secrets.py index 0eea362..ca6dbd2 100755 --- a/secrets.py +++ b/secrets.py @@ -1,11 +1,10 @@ import os # Go to https://apps.twitter.com/ and create an app. # The consumer key and secret will be generated for you after -consumer_key=os.getenv('TWITTER_CONSUMER_KEY') -consumer_secret=os.getenv('TWITTER_CONSUMER_SECRET') +consumer_key = os.getenv('TWITTER_CONSUMER_KEY') +consumer_secret = os.getenv('TWITTER_CONSUMER_SECRET') # After the step above, you will be redirected to your app's page. # Create an access token under the the "Create New App" section -access_token=os.getenv('TWITTER_ACCESS_TOKEN') -access_token_secret=os.getenv('TWITTER_ACCESS_TOKEN_SECRET') - +access_token = os.getenv('TWITTER_ACCESS_TOKEN') +access_token_secret = os.getenv('TWITTER_ACCESS_TOKEN_SECRET') From a93e229182fcac6d80087e9f591dd0b6ab939e8c Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Sun, 21 Jul 2019 18:16:24 +0200 Subject: [PATCH 04/10] added sentiment analysis --- requirements.txt | 1 + .../steffanwatkins/2019-07-21_15-19-59.json | 1 + .../steffanwatkins/2019-07-21_15-20-15.json | 1 + .../steffanwatkins/2019-07-21_15-20-49.json | 1 + .../steffanwatkins/2019-07-21_15-26-44.json | 1 + .../steffanwatkins/2019-07-21_15-27-51.json | 1 + .../steffanwatkins/2019-07-21_15-33-46.json | 1 + .../steffanwatkins/2019-07-21_15-33-56.json | 1 + tweets_analyzer.py | 85 ++++++++++++++++++- 9 files changed, 89 insertions(+), 4 deletions(-) create mode 100644 tweets/steffanwatkins/2019-07-21_15-19-59.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-20-15.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-20-49.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-26-44.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-27-51.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-33-46.json create mode 100644 tweets/steffanwatkins/2019-07-21_15-33-56.json diff --git a/requirements.txt b/requirements.txt index cf7b9ef..245e776 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,3 +11,4 @@ six==1.11.0 tqdm==4.25.0 tweepy==3.6.0 urllib3==1.23 +textblob==0.15.3 \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-19-59.json b/tweets/steffanwatkins/2019-07-21_15-19-59.json new file mode 100644 index 0000000..f8360ea --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-19-59.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-20-15.json b/tweets/steffanwatkins/2019-07-21_15-20-15.json new file mode 100644 index 0000000..8478703 --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-20-15.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46429, "friends_count": 1294, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162552, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1473, "favorite_count": 1325, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 18, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32432, "friends_count": 7278, "listed_count": 667, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62521, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 109, "favorite_count": 116, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2249, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48652, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32317, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 13, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44097, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162552, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1473, "favorite_count": 1325, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 867, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781311, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1543, "favorite_count": 6748, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1336, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32203, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33861, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574893, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2946, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6892, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118634, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-20-49.json b/tweets/steffanwatkins/2019-07-21_15-20-49.json new file mode 100644 index 0000000..b93f0a7 --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-20-49.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46430, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162556, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1481, "favorite_count": 1331, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 18, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32436, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 109, "favorite_count": 116, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23962, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32317, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 13, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44102, "friends_count": 832, "listed_count": 848, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162556, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1481, "favorite_count": 1331, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 868, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781312, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1543, "favorite_count": 6752, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1336, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32204, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33861, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574893, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2947, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6892, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118634, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-26-44.json b/tweets/steffanwatkins/2019-07-21_15-26-44.json new file mode 100644 index 0000000..70bd99e --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-26-44.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46430, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162580, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1526, "favorite_count": 1369, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 19, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 110, "favorite_count": 122, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 14, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44103, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162580, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1526, "favorite_count": 1369, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 868, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781316, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1550, "favorite_count": 6768, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32205, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33862, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574894, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2948, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6893, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118636, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-27-51.json b/tweets/steffanwatkins/2019-07-21_15-27-51.json new file mode 100644 index 0000000..7a0d913 --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-27-51.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46431, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162584, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1533, "favorite_count": 1376, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 19, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 111, "favorite_count": 122, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44103, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162584, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1533, "favorite_count": 1376, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 869, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781317, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1551, "favorite_count": 6775, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 518, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32205, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574894, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2948, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14415, "friends_count": 6893, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118636, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-33-46.json b/tweets/steffanwatkins/2019-07-21_15-33-46.json new file mode 100644 index 0000000..0fae182 --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-33-46.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:28:17 +0000 2019", "id": 1152963512500654081, "id_str": "1152963512500654081", "text": "@CFrattini3 Unarmed is lighter, can fly further, and arguably less likely to be shot down by the Americans", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152960265052467201, "in_reply_to_status_id_str": "1152960265052467201", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46432, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162604, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1581, "favorite_count": 1418, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 20, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 666, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 114, "favorite_count": 125, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48654, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 18, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44104, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162604, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1581, "favorite_count": 1418, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 34, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 872, "friends_count": 1554, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 121, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781321, "friends_count": 583, "listed_count": 4753, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1556, "favorite_count": 6801, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 521, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 127, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 127, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9772, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32206, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574899, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2949, "friends_count": 1164, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-33-56.json b/tweets/steffanwatkins/2019-07-21_15-33-56.json new file mode 100644 index 0000000..1fbf0b7 --- /dev/null +++ b/tweets/steffanwatkins/2019-07-21_15-33-56.json @@ -0,0 +1 @@ +[{"created_at": "Sun Jul 21 15:28:17 +0000 2019", "id": 1152963512500654081, "id_str": "1152963512500654081", "text": "@CFrattini3 Unarmed is lighter, can fly further, and arguably less likely to be shot down by the Americans", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152960265052467201, "in_reply_to_status_id_str": "1152960265052467201", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46432, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162605, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1583, "favorite_count": 1420, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 20, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 666, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 114, "favorite_count": 125, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48654, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 18, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44104, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162605, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1583, "favorite_count": 1420, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 34, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 872, "friends_count": 1554, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 121, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781321, "friends_count": 583, "listed_count": 4753, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1556, "favorite_count": 6801, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 521, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 127, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 127, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9773, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32206, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574899, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2949, "friends_count": 1164, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 7a96129..3f3f164 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -19,9 +19,11 @@ from __future__ import unicode_literals +from textblob import TextBlob from ascii_graph import Pyasciigraph -from ascii_graph.colors import Gre, Yel, Red -from ascii_graph.colordata import hcolor +from ascii_graph.colors import Gre, Yel, Red, Blu +from ascii_graph.colordata import hcolor, vcolor +from prettytable import PrettyTable from tqdm import tqdm import tweepy import numpy @@ -102,6 +104,13 @@ detected_sources = collections.Counter() detected_places = collections.Counter() geo_enabled_tweets = 0 +subjectivity = collections.Counter() +polarity = collections.Counter() +sentiment_tweets = { + 'positive': [], + 'negative': [], + 'neutral': [], +} detected_hashtags = collections.Counter() detected_domains = collections.Counter() detected_timezones = collections.Counter() @@ -172,6 +181,41 @@ def process_tweet(tweet): tweet.place.name = tweet.place.name detected_places[tweet.place.name] += 1 + # detect sentiment of tweet + blob = TextBlob(tweet.text) + blob.tags + for sentence in blob.sentences: + positive, neutral, negative = 0,0,0 + # import pdb;pdb.set_trace() + # print(sentence.sentiment.polarity) + # print(blob.sentiment_assessments) + if sentence.sentiment.polarity > 0: + positive += 1 + if sentence.sentiment.polarity == 0: + neutral += 1 + if sentence.sentiment.polarity < 0: + negative += 1 + if sentence.sentiment.subjectivity > 0: + polarity['subjective'] +=1 + if sentence.sentiment.subjectivity == 0: + polarity['neutral'] += 1 + if sentence.sentiment.subjectivity < 0: + polarity['objective'] += 1 + + x = collections.Counter({'positive': negative, 'negative': negative, 'neutral': neutral}) + key, value = x.most_common()[0] + + if key == 'positive': + subjectivity['positive'] += value + sentiment_tweets['positive'] += [(tweet, blob.sentiment_assessments)] + if key == 'neutral': + subjectivity['neutral'] += value + sentiment_tweets['neutral'] += [(tweet, blob.sentiment_assessments)] + if key == 'negative': + subjectivity['negative'] += value + sentiment_tweets['negative'] += [(tweet, blob.sentiment_assessments)] + + # Updating hashtags list if tweet.entities['hashtags']: for ht in tweet.entities['hashtags']: @@ -323,6 +367,34 @@ def print_charts(dataset, title, weekday=False): print(line) cprint("") +def print_simple_chart(dataset, title): + pattern = [Yel] + # import pdb;pdb.set_trace() + data = vcolor(dataset.most_common(), pattern) + + graph = Pyasciigraph( + separator_length=4, + multivalue=False, + human_readable='si', + ) + + if args.json is False: + for line in graph.graph(title, data): + if not color_supported: + ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') + line = ansi_escape.sub('', line) + print(line) + +def print_sample_tweets(dataset): + + for layer in dataset.keys(): + table = PrettyTable() + table.field_names = ["Tweet", "Date", "Sentiment", "Subjectivity"] + cprint("[+] Tweets that are {}".format(layer)) + for tweet,sentiment in dataset[layer][0:5]: + table.add_row([tweet.text.strip(), str(tweet.created_at), sentiment.polarity, sentiment.subjectivity]) + print(table) + def main(): global color_supported @@ -439,6 +511,11 @@ def main(): print_stats(detected_domains, top=6) jsono["top_referenced_domains"] = detected_domains + cprint("[+] Sentiment") + print_simple_chart(subjectivity, title='Sentiment') + print_simple_chart(polarity, title='Subjectivity') + print_sample_tweets(sentiment_tweets) + if args.friends: max_friends = numpy.amin([user_info.friends_count, 300]) cprint("[+] Getting %d @%s's friends data..." % (max_friends, args.name)) @@ -473,5 +550,5 @@ def main(): main() except tweepy.error.TweepError as e: cprint("[\033[91m!\033[0m] Twitter error: %s" % e) - except Exception as e: - cprint("[\033[91m!\033[0m] Error: %s" % e) + # except Exception as e: + # cprint("[\033[91m!\033[0m] Error: %s" % e) From 9a2d0b090d5351e86f87bfd9b71bb8e261b6bb31 Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Sun, 21 Jul 2019 18:16:52 +0200 Subject: [PATCH 05/10] nl[ --- tweets/steffanwatkins/2019-07-21_15-19-59.json | 1 - tweets/steffanwatkins/2019-07-21_15-20-15.json | 1 - tweets/steffanwatkins/2019-07-21_15-20-49.json | 1 - tweets/steffanwatkins/2019-07-21_15-26-44.json | 1 - tweets/steffanwatkins/2019-07-21_15-27-51.json | 1 - tweets/steffanwatkins/2019-07-21_15-33-46.json | 1 - tweets/steffanwatkins/2019-07-21_15-33-56.json | 1 - 7 files changed, 7 deletions(-) delete mode 100644 tweets/steffanwatkins/2019-07-21_15-19-59.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-20-15.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-20-49.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-26-44.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-27-51.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-33-46.json delete mode 100644 tweets/steffanwatkins/2019-07-21_15-33-56.json diff --git a/tweets/steffanwatkins/2019-07-21_15-19-59.json b/tweets/steffanwatkins/2019-07-21_15-19-59.json deleted file mode 100644 index f8360ea..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-19-59.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-20-15.json b/tweets/steffanwatkins/2019-07-21_15-20-15.json deleted file mode 100644 index 8478703..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-20-15.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46429, "friends_count": 1294, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1971, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162552, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1473, "favorite_count": 1325, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 18, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32432, "friends_count": 7278, "listed_count": 667, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62521, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 109, "favorite_count": 116, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2249, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48652, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32317, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 13, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44097, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162552, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1473, "favorite_count": 1325, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11334, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62855, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 867, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781311, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1543, "favorite_count": 6748, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1336, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32203, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33861, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574893, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2946, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6892, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118634, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-20-49.json b/tweets/steffanwatkins/2019-07-21_15-20-49.json deleted file mode 100644 index b93f0a7..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-20-49.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46430, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2053, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1747, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162556, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1481, "favorite_count": 1331, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 18, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32436, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 109, "favorite_count": 116, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23962, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32317, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 13, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44102, "friends_count": 832, "listed_count": 848, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162556, "friends_count": 403, "listed_count": 1847, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1481, "favorite_count": 1331, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 868, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781312, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1543, "favorite_count": 6752, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1336, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32204, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33861, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574893, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2947, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6892, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118634, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-26-44.json b/tweets/steffanwatkins/2019-07-21_15-26-44.json deleted file mode 100644 index 70bd99e..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-26-44.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46430, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162580, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1526, "favorite_count": 1369, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 19, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 110, "favorite_count": 122, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 14, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44103, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162580, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1526, "favorite_count": 1369, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 868, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781316, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1550, "favorite_count": 6768, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 517, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32205, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33862, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574894, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2948, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14414, "friends_count": 6893, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118636, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:47:33 +0000 2019", "id": 1152560677598519298, "id_str": "1152560677598519298", "text": "What he said. https://t.co/Y0xlyVjmBz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Y0xlyVjmBz", "expanded_url": "https://twitter.com/samir_madani/status/1152552325506113536", "display_url": "twitter.com/samir_madani/s\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69211, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152552325506113536, "quoted_status_id_str": "1152552325506113536", "quoted_status": {"created_at": "Sat Jul 20 12:14:22 +0000 2019", "id": 1152552325506113536, "id_str": "1152552325506113536", "text": "I\u2019m not in the maritime risk biz, but switching off AIS the way the Iran\u2019s NITC fleet does seems too risky, I\u2019d say\u2026 https://t.co/nVh6GmUEt8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nVh6GmUEt8", "expanded_url": "https://twitter.com/i/web/status/1152552325506113536", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 317643185, "id_str": "317643185", "name": "Samir Madani \ud83d\udee2", "screen_name": "Samir_Madani", "location": "", "description": "My life is light, sweet & crude. Father of 4 & entrepreneur that left 20y wireless tech career to keep track of #oil. Co-culprit behind #OOTT & @TankerTrackers", "url": "https://t.co/cteYmSmgvQ", "entities": {"url": {"urls": [{"url": "https://t.co/cteYmSmgvQ", "expanded_url": "http://TankerTrackers.com", "display_url": "TankerTrackers.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29723, "friends_count": 987, "listed_count": 989, "created_at": "Wed Jun 15 07:34:30 +0000 2011", "favourites_count": 108357, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 105878, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/949312761519132673/QCCooGBS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/317643185/1555072161", "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152548801984569344, "quoted_status_id_str": "1152548801984569344", "retweet_count": 8, "favorite_count": 21, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-27-51.json b/tweets/steffanwatkins/2019-07-21_15-27-51.json deleted file mode 100644 index 7a0d913..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-27-51.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46431, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2054, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1749, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162584, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1533, "favorite_count": 1376, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 19, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 665, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 111, "favorite_count": 122, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48653, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44103, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162584, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1533, "favorite_count": 1376, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 32, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 869, "friends_count": 1552, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 120, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781317, "friends_count": 583, "listed_count": 4752, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1551, "favorite_count": 6775, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 518, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26468, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 126, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 126, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9769, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32205, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574894, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2948, "friends_count": 1163, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 12:50:17 +0000 2019", "id": 1152561366349373440, "id_str": "1152561366349373440", "text": "RT @CrispinBurke: Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [3, 16]}], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [114, 137]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62857, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69212, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:07:39 +0000 2019", "id": 1152550633754562561, "id_str": "1152550633754562561", "text": "Opinion | Don\u2019t throw out your DVDs. They\u2019re your best protection against corporate censorship. https://t.co/Ti2k5JGWl4", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ti2k5JGWl4", "expanded_url": "https://www.washingtonpost.com/opinions/2019/03/19/dont-throw-out-your-dvds-theyre-your-best-protection-against-corporate-censorship/", "display_url": "washingtonpost.com/opinions/2019/\u2026", "indices": [96, 119]}]}, "source": "Facebook", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 42343812, "id_str": "42343812", "name": "Crispin Burke", "screen_name": "CrispinBurke", "location": "Washington, DC", "description": "Defense/NatSec blogger, @USArmy Aviator. Saving the world, one tweet at a time. Does not represent the views of @DeptOfDefense. RT/Like \u2260 Endorsement.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14415, "friends_count": 6893, "listed_count": 535, "created_at": "Mon May 25 03:47:32 +0000 2009", "favourites_count": 118636, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106327, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151601396929761280/-pFId_cb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/42343812/1441650385", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 10, "favorite_count": 23, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 10, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-33-46.json b/tweets/steffanwatkins/2019-07-21_15-33-46.json deleted file mode 100644 index 0fae182..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-33-46.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:28:17 +0000 2019", "id": 1152963512500654081, "id_str": "1152963512500654081", "text": "@CFrattini3 Unarmed is lighter, can fly further, and arguably less likely to be shot down by the Americans", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152960265052467201, "in_reply_to_status_id_str": "1152960265052467201", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46432, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162604, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1581, "favorite_count": 1418, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 20, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 666, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 114, "favorite_count": 125, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48654, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 18, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44104, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162604, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1581, "favorite_count": 1418, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 34, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 872, "friends_count": 1554, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 121, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781321, "friends_count": 583, "listed_count": 4753, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1556, "favorite_count": 6801, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 521, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 127, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 127, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9772, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32206, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574899, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2949, "friends_count": 1164, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file diff --git a/tweets/steffanwatkins/2019-07-21_15-33-56.json b/tweets/steffanwatkins/2019-07-21_15-33-56.json deleted file mode 100644 index 1fbf0b7..0000000 --- a/tweets/steffanwatkins/2019-07-21_15-33-56.json +++ /dev/null @@ -1 +0,0 @@ -[{"created_at": "Sun Jul 21 15:28:17 +0000 2019", "id": 1152963512500654081, "id_str": "1152963512500654081", "text": "@CFrattini3 Unarmed is lighter, can fly further, and arguably less likely to be shot down by the Americans", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152960265052467201, "in_reply_to_status_id_str": "1152960265052467201", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:26:51 +0000 2019", "id": 1152963152629379072, "id_str": "1152963152629379072", "text": "@esteban62893938 The gear is coming down, that looks like a stock photo, unfortunately...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "esteban62893938", "name": "esteban restrepo", "id": 1011104233, "id_str": "1011104233", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152962752220028928, "in_reply_to_status_id_str": "1152962752220028928", "in_reply_to_user_id": 1011104233, "in_reply_to_user_id_str": "1011104233", "in_reply_to_screen_name": "esteban62893938", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:16:07 +0000 2019", "id": 1152960453817053184, "id_str": "1152960453817053184", "text": "@Arr3ch0 If you see a tail number in one of these, let me know!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Arr3ch0", "name": "Arrecho", "id": 1100450924659703816, "id_str": "1100450924659703816", "indices": [0, 8]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:15:04 +0000 2019", "id": 1152960188355358722, "id_str": "1152960188355358722", "text": "@rodolfo39270059 That makes even less sense then - it was probably a private jet hiding its identity. Thank you for\u2026 https://t.co/iZq47JJUfc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rodolfo39270059", "name": "rodolfo", "id": 1066358273824178177, "id_str": "1066358273824178177", "indices": [0, 16]}], "urls": [{"url": "https://t.co/iZq47JJUfc", "expanded_url": "https://twitter.com/i/web/status/1152960188355358722", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959876810907649, "in_reply_to_status_id_str": "1152959876810907649", "in_reply_to_user_id": 1066358273824178177, "in_reply_to_user_id_str": "1066358273824178177", "in_reply_to_screen_name": "rodolfo39270059", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:13:59 +0000 2019", "id": 1152959917713764352, "id_str": "1152959917713764352", "text": "@CFrattini3 It was in international airspace, in their flight information region - similar to NORAD intercepts of R\u2026 https://t.co/QsczDLHRAX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CFrattini3", "name": "Charlie Frattini", "id": 757750277906792448, "id_str": "757750277906792448", "indices": [0, 11]}], "urls": [{"url": "https://t.co/QsczDLHRAX", "expanded_url": "https://twitter.com/i/web/status/1152959917713764352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152959181281996801, "in_reply_to_status_id_str": "1152959181281996801", "in_reply_to_user_id": 757750277906792448, "in_reply_to_user_id_str": "757750277906792448", "in_reply_to_screen_name": "CFrattini3", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:12:40 +0000 2019", "id": 1152959582177808385, "id_str": "1152959582177808385", "text": "...the more I think about it, the less it works - they entered the Venezuelan FIR without their transponder on (it\u2026 https://t.co/pBzgaIRRqb", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pBzgaIRRqb", "expanded_url": "https://twitter.com/i/web/status/1152959582177808385", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152958912292954112, "in_reply_to_status_id_str": "1152958912292954112", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:10:00 +0000 2019", "id": 1152958912292954112, "id_str": "1152958912292954112", "text": "Are American EP-3s flying out of Douglas-Charles Airport or Cane Field in Dominica \ud83c\udde9\ud83c\uddf2? Just wondering, since the un\u2026 https://t.co/0DV3fCzRCl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0DV3fCzRCl", "expanded_url": "https://twitter.com/i/web/status/1152958912292954112", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957256566280192, "in_reply_to_status_id_str": "1152957256566280192", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957256566280192, "id_str": "1152957256566280192", "text": "I'm not completely convinced that the EP-3 is this one, but it is interesting that it fled the area right after the\u2026 https://t.co/iGRwpwW6DB", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/iGRwpwW6DB", "expanded_url": "https://twitter.com/i/web/status/1152957256566280192", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152957255123460096, "in_reply_to_status_id_str": "1152957255123460096", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 15:03:25 +0000 2019", "id": 1152957255123460096, "id_str": "1152957255123460096", "text": "Fake ICAO Busted: https://t.co/ukTXkeseYX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1152956227606982657, "id_str": "1152956227606982657", "indices": [18, 41], "media_url": "http://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "media_url_https": "https://pbs.twimg.com/media/EAAflJQWsAEt4bc.png", "url": "https://t.co/ukTXkeseYX", "display_url": "pic.twitter.com/ukTXkeseYX", "expanded_url": "https://twitter.com/steffanwatkins/status/1152957255123460096/photo/1", "type": "photo", "sizes": {"large": {"w": 861, "h": 324, "resize": "fit"}, "small": {"w": 680, "h": 256, "resize": "fit"}, "medium": {"w": 861, "h": 324, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955603578494976, "in_reply_to_status_id_str": "1152955603578494976", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:56:51 +0000 2019", "id": 1152955603578494976, "id_str": "1152955603578494976", "text": "https://t.co/PToCTvCFX1", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PToCTvCFX1", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953776770375681", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955494840987648, "in_reply_to_status_id_str": "1152955494840987648", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953776770375681, "quoted_status_id_str": "1152953776770375681", "quoted_status": {"created_at": "Sun Jul 21 14:49:35 +0000 2019", "id": 1152953776770375681, "id_str": "1152953776770375681", "text": "@steffanwatkins https://t.co/DewhNPFz1T", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [], "media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858"}]}, "extended_entities": {"media": [{"id": 1152534350292017152, "id_str": "1152534350292017152", "indices": [16, 39], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152534350292017152/pu/img/5LzWQUq5uK_zxsek.jpg", "url": "https://t.co/DewhNPFz1T", "display_url": "pic.twitter.com/DewhNPFz1T", "expanded_url": "https://twitter.com/CeballosIchaso/status/1152534491581374469/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 656, "h": 480, "resize": "fit"}, "large": {"w": 656, "h": 480, "resize": "fit"}, "small": {"w": 656, "h": 480, "resize": "fit"}}, "source_status_id": 1152534491581374469, "source_status_id_str": "1152534491581374469", "source_user_id": 309278858, "source_user_id_str": "309278858", "video_info": {"aspect_ratio": [41, 30], "duration_millis": 45000, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/368x270/SgGud3EnnSykV4qY.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/pl/pcqBtiRAXxLhRROU.m3u8?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/492x360/5hhfArQz-VLG584b.mp4?tag=10"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152534350292017152/pu/vid/656x480/_J5b3eDw98ttUA0x.mp4?tag=10"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 309278858, "id_str": "309278858", "name": "A/J REMIGIO CEBALLOS", "screen_name": "CeballosIchaso", "location": "", "description": "Comandante Estrat\u00e9gico Operacional CHAVEZ VIVE! LA PATRIA SIGUE! Bolivariano Zamorano y Socialista", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46432, "friends_count": 1293, "listed_count": 143, "created_at": "Wed Jun 01 20:45:27 +0000 2011", "favourites_count": 53, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16054, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1084784040274726918/68taI1-i_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/309278858/1458785683", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152953306798579713, "in_reply_to_status_id_str": "1152953306798579713", "in_reply_to_user_id": 1100450924659703816, "in_reply_to_user_id_str": "1100450924659703816", "in_reply_to_screen_name": "Arr3ch0", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 14:56:25 +0000 2019", "id": 1152955494840987648, "id_str": "1152955494840987648", "text": "That might be the one indeed; none of the EP-3s on my list were in the air at that time, or anywhere near there.\n\nhttps://t.co/ARTbWvz1Gm", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ARTbWvz1Gm", "expanded_url": "https://twitter.com/Arr3ch0/status/1152647203674099714", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [114, 137]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152955019295109121, "in_reply_to_status_id_str": "1152955019295109121", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152647203674099714, "quoted_status_id_str": "1152647203674099714", "quoted_status": {"created_at": "Sat Jul 20 18:31:23 +0000 2019", "id": 1152647203674099714, "id_str": "1152647203674099714", "text": "This is from yesterday #19Jul 1705z. Looks like South African hex code. Very strange, any idea anyone? #avgeeks\u2026 https://t.co/bwRKj3wyg6", "truncated": true, "entities": {"hashtags": [{"text": "19Jul", "indices": [23, 29]}, {"text": "avgeeks", "indices": [103, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bwRKj3wyg6", "expanded_url": "https://twitter.com/i/web/status/1152647203674099714", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [113, 136]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:54:32 +0000 2019", "id": 1152955019295109121, "id_str": "1152955019295109121", "text": "Here we go\nhttps://t.co/w9PUkIdE64", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/w9PUkIdE64", "expanded_url": "https://twitter.com/Arr3ch0/status/1152953306798579713", "display_url": "twitter.com/Arr3ch0/status\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152954338312110080, "in_reply_to_status_id_str": "1152954338312110080", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152953306798579713, "quoted_status_id_str": "1152953306798579713", "quoted_status": {"created_at": "Sun Jul 21 14:47:43 +0000 2019", "id": 1152953306798579713, "id_str": "1152953306798579713", "text": "@steffanwatkins Venezuelan version:\nCallsign SWORD15\n19th July From 1252z\nhttps://t.co/gkKQdrzOD3\u2026 https://t.co/X6lgTSl9Rl", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [0, 15]}], "urls": [{"url": "https://t.co/gkKQdrzOD3", "expanded_url": "http://www.mindefensa.gob.ve/mindefensa/2019/07/20/comunicado-oficial-de-la-fuerza-armada-nacional-bolivariana-4/", "display_url": "mindefensa.gob.ve/mindefensa/201\u2026", "indices": [74, 97]}, {"url": "https://t.co/X6lgTSl9Rl", "expanded_url": "https://twitter.com/i/web/status/1152953306798579713", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [99, 122]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 1100450924659703816, "id_str": "1100450924659703816", "name": "Arrecho", "screen_name": "Arr3ch0", "location": "Comandancia General de la Avia", "description": "#Venezuela", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1972, "friends_count": 453, "listed_count": 12, "created_at": "Tue Feb 26 17:42:00 +0000 2019", "favourites_count": 2061, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1750, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108742434132033537/o9YS1dH4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1100450924659703816/1551213187", "profile_link_color": "14171A", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:51:49 +0000 2019", "id": 1152954338312110080, "id_str": "1152954338312110080", "text": "July 19th, 2019? Interesting, I don't see one. I guess I have to look harder.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152947155033870341, "in_reply_to_status_id_str": "1152947155033870341", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:23:17 +0000 2019", "id": 1152947155033870341, "id_str": "1152947155033870341", "text": "...an EP-3 you say? Alright. Let's look that up. https://t.co/vC7AcgWOY5", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vC7AcgWOY5", "expanded_url": "https://twitter.com/Southcom/status/1152917472955289602", "display_url": "twitter.com/Southcom/statu\u2026", "indices": [49, 72]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162605, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1583, "favorite_count": 1420, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 7, "favorite_count": 20, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:15:16 +0000 2019", "id": 1152945140861980672, "id_str": "1152945140861980672", "text": "@mauricefemenias I think it looks awesome - but I have no drone identification-knowledge :(", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "mauricefemenias", "name": "mauricio femenias", "id": 369152037, "id_str": "369152037", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152937349350907904, "in_reply_to_status_id_str": "1152937349350907904", "in_reply_to_user_id": 369152037, "in_reply_to_user_id_str": "369152037", "in_reply_to_screen_name": "mauricefemenias", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 14:14:42 +0000 2019", "id": 1152944997827776512, "id_str": "1152944997827776512", "text": "This thing looks like it would be a lot of fun to fly... perhaps out of my price range... https://t.co/TenjZLlaCn", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TenjZLlaCn", "expanded_url": "https://twitter.com/Natsecjeff/status/1152930451838906369", "display_url": "twitter.com/Natsecjeff/sta\u2026", "indices": [90, 113]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152930451838906369, "quoted_status_id_str": "1152930451838906369", "quoted_status": {"created_at": "Sun Jul 21 13:16:54 +0000 2019", "id": 1152930451838906369, "id_str": "1152930451838906369", "text": "CONFIRMED:\n\nPakistani security have found a crashed drone in damaged condition in Chaghi, Balochistan. The drone ha\u2026 https://t.co/KssEN96Cmy", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/KssEN96Cmy", "expanded_url": "https://twitter.com/i/web/status/1152930451838906369", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 117767974, "id_str": "117767974", "name": "F. Jeffery", "screen_name": "Natsecjeff", "location": "Global", "description": "Monitoring Militancy, Conflicts. @ITCTofficial @PorterMedium @AuroraIntel. Telegram: https://t.co/tVJnTXtcV7 | RTs\u2260Endorsements. Opinions Personal. #OSINT #Security", "url": "https://t.co/2IpJZqJEES", "entities": {"url": {"urls": [{"url": "https://t.co/2IpJZqJEES", "expanded_url": "https://www.itct.org.uk/archives/itct_team/faran-jeffery", "display_url": "itct.org.uk/archives/itct_\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/tVJnTXtcV7", "expanded_url": "http://t.me/natsecjeff", "display_url": "t.me/natsecjeff", "indices": [85, 108]}]}}, "protected": false, "followers_count": 32437, "friends_count": 7279, "listed_count": 666, "created_at": "Fri Feb 26 15:06:15 +0000 2010", "favourites_count": 62523, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 253870, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151063617703436288/MR1_EVNN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/117767974/1563620947", "profile_link_color": "0F1111", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 114, "favorite_count": 125, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 5, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 14:12:10 +0000 2019", "id": 1152944359458955264, "id_str": "1152944359458955264", "text": "#RCNavy https://t.co/TcSonwrBqv", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [0, 7]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/TcSonwrBqv", "expanded_url": "https://twitter.com/YorukIsik/status/1152932092994555905", "display_url": "twitter.com/YorukIsik/stat\u2026", "indices": [8, 31]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152932092994555905, "quoted_status_id_str": "1152932092994555905", "quoted_status": {"created_at": "Sun Jul 21 13:23:26 +0000 2019", "id": 1152932092994555905, "id_str": "1152932092994555905", "text": "Halifax class @RCN_MRC frigate @SNMG_2 HMCS Toronto departed the BlackSea & transited Bosphorus towards Mediterrane\u2026 https://t.co/tqRWdmyrQn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "RCN_MRC", "name": "Home Services Reviews", "id": 1136160964452257802, "id_str": "1136160964452257802", "indices": [14, 22]}, {"screen_name": "SNMG_2", "name": "SNMG2", "id": 883548722587725824, "id_str": "883548722587725824", "indices": [31, 38]}], "urls": [{"url": "https://t.co/tqRWdmyrQn", "expanded_url": "https://twitter.com/i/web/status/1152932092994555905", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 327206200, "id_str": "327206200", "name": "Y\u00f6r\u00fck I\u015f\u0131k", "screen_name": "YorukIsik", "location": "Bosphorus, Istanbul", "description": "BOSPHORUS OBSERVER: Obsessive ship-spotting by the Bosphorus .... . .-. / ... . -.-- / -.-. --- -.- / --. ..- --.. . .-.. / --- .-.. .- -.-. .- -.-", "url": "https://t.co/wfWfbhj530", "entities": {"url": {"urls": [{"url": "https://t.co/wfWfbhj530", "expanded_url": "http://www.bosphorusobserver.com", "display_url": "bosphorusobserver.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23961, "friends_count": 2248, "listed_count": 438, "created_at": "Fri Jul 01 05:04:21 +0000 2011", "favourites_count": 48654, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 32318, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2B65EC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme13/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146726433508777984/5wmxPPf1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/327206200/1562000596", "profile_link_color": "8B4513", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 18, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sun Jul 21 13:45:38 +0000 2019", "id": 1152937679539134464, "id_str": "1152937679539134464", "text": "@lonegungal Swallow three whole peppercorns with (b4) meals. I'm not sure if they're an irritant or what, but it's a family secret - shh. ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "lonegungal", "name": "LoneGunGal", "id": 1648474916, "id_str": "1648474916", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152905694330400768, "in_reply_to_status_id_str": "1152905694330400768", "in_reply_to_user_id": 1648474916, "in_reply_to_user_id_str": "1648474916", "in_reply_to_screen_name": "lonegungal", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:44:11 +0000 2019", "id": 1152937316081721344, "id_str": "1152937316081721344", "text": "RT @intellipus: This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM would ch\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "intellipus", "name": "INTELLIPUS", "id": 4048091663, "id_str": "4048091663", "indices": [3, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 13:41:16 +0000 2019", "id": 1152936582208524288, "id_str": "1152936582208524288", "text": "This is pretty routine, at least with other nations during FONOPS, but I find the timing interesting that SOUTHCOM\u2026 https://t.co/EKozQbjKn9", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EKozQbjKn9", "expanded_url": "https://twitter.com/i/web/status/1152936582208524288", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 4048091663, "id_str": "4048091663", "name": "INTELLIPUS", "screen_name": "intellipus", "location": "", "description": "Monitoring, Analysis, Collating. Information is Ammunition.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 44104, "friends_count": 832, "listed_count": 847, "created_at": "Mon Oct 26 18:55:03 +0000 2015", "favourites_count": 17925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20904, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/962865027547041793/CI9lEKke_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4048091663/1518400235", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "quoted_status": {"created_at": "Sun Jul 21 12:25:20 +0000 2019", "id": 1152917472955289602, "id_str": "1152917472955289602", "text": "1 of 2 JUST RELEASED #Venezuela SU-30 Flanker \u201caggressively shadowed\u201d a U.S. EP-3 aircraft at an unsafe distance Ju\u2026 https://t.co/0QYYb1h4XM", "truncated": true, "entities": {"hashtags": [{"text": "Venezuela", "indices": [21, 31]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0QYYb1h4XM", "expanded_url": "https://twitter.com/i/web/status/1152917472955289602", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 19667766, "id_str": "19667766", "name": "U.S. Southern Command", "screen_name": "Southcom", "location": "Miami, Florida", "description": "Official account of SOUTHCOM. Oversees U.S. military activities in Latin America & Caribbean. RT/follow\u2260endorsement. Previously @southcomwatch", "url": "https://t.co/y9mI2zQoPV", "entities": {"url": {"urls": [{"url": "https://t.co/y9mI2zQoPV", "expanded_url": "http://www.southcom.mil", "display_url": "southcom.mil", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 162605, "friends_count": 403, "listed_count": 1842, "created_at": "Wed Jan 28 18:46:53 +0000 2009", "favourites_count": 4102, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 5508, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "56748F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/877151729233661952/hnzLVuzj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/19667766/1560536098", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1583, "favorite_count": 1420, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 19, "favorite_count": 34, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 1152917472955289602, "quoted_status_id_str": "1152917472955289602", "retweet_count": 19, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:43:46 +0000 2019", "id": 1152937212591378433, "id_str": "1152937212591378433", "text": "@TheBrit96 @hthjones As long as the US aren't involved, you might find others more readily available to lend a hand.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "hthjones", "name": "Henry Jones", "id": 3326520519, "id_str": "3326520519", "indices": [11, 20]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152936732293251073, "in_reply_to_status_id_str": "1152936732293251073", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:29:42 +0000 2019", "id": 1152933670707245056, "id_str": "1152933670707245056", "text": "@Hunterr1 As an aside, from seeing several projects from concept to delivery, I really love seeing how seemingly sm\u2026 https://t.co/iBJJ43DCIa", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/iBJJ43DCIa", "expanded_url": "https://twitter.com/i/web/status/1152933670707245056", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152933183094165504, "in_reply_to_status_id_str": "1152933183094165504", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:27:45 +0000 2019", "id": 1152933183094165504, "id_str": "1152933183094165504", "text": "@Hunterr1 It's still a mess. It accomplishes nothing. If their way was better than everyone else's, everyone else w\u2026 https://t.co/1smHoUFyMA", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Hunterr1", "name": "Alan", "id": 138890102, "id_str": "138890102", "indices": [0, 9]}], "urls": [{"url": "https://t.co/1smHoUFyMA", "expanded_url": "https://twitter.com/i/web/status/1152933183094165504", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152931901306494977, "in_reply_to_status_id_str": "1152931901306494977", "in_reply_to_user_id": 138890102, "in_reply_to_user_id_str": "138890102", "in_reply_to_screen_name": "Hunterr1", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 13:15:05 +0000 2019", "id": 1152929994248720390, "id_str": "1152929994248720390", "text": "RT @3r1nG: \u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d - @steffanwa\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "3r1nG", "name": "Erin Gallagher", "id": 50512313, "id_str": "50512313", "indices": [3, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 12:33:06 +0000 2019", "id": 1152919427425415168, "id_str": "1152919427425415168", "text": "\u201cThere's an information operation taking place and we cannot distinguish between propaganda and news at this time.\u201d\u2026 https://t.co/xMbQKNPuvw", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xMbQKNPuvw", "expanded_url": "https://twitter.com/i/web/status/1152919427425415168", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 50512313, "id_str": "50512313", "name": "Erin Gallagher", "screen_name": "3r1nG", "location": "USA", "description": "multimedia artist \u2022 writer \u2022 translator", "url": "https://t.co/WqH1gAq7QQ", "entities": {"url": {"urls": [{"url": "https://t.co/WqH1gAq7QQ", "expanded_url": "https://medium.com/@erin_gallagher?source=linkShare-87f9a06ef9c-1501516172", "display_url": "medium.com/@erin_gallaghe\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 5428, "friends_count": 5504, "listed_count": 185, "created_at": "Thu Jun 25 01:42:54 +0000 2009", "favourites_count": 11113, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31514, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1117620008983699458/DMDjKKBo_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/50512313/1555038850", "profile_link_color": "28A9E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "140E0A", "profile_text_color": "4F3F38", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:55:39 +0000 2019", "id": 1152925104092930050, "id_str": "1152925104092930050", "text": "@tohmbarrett @sebh1981 @TheSenkari @ForcesReviewUK Guy, it's not readily available. Not sure why you'd believe thes\u2026 https://t.co/h2vA2vGR2t", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "tohmbarrett", "name": "Tohm Barrett", "id": 1120105093595107328, "id_str": "1120105093595107328", "indices": [0, 12]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [13, 22]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [23, 34]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [35, 50]}], "urls": [{"url": "https://t.co/h2vA2vGR2t", "expanded_url": "https://twitter.com/i/web/status/1152925104092930050", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152924167341314048, "in_reply_to_status_id_str": "1152924167341314048", "in_reply_to_user_id": 1120105093595107328, "in_reply_to_user_id_str": "1120105093595107328", "in_reply_to_screen_name": "tohmbarrett", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 12:52:29 +0000 2019", "id": 1152924306315325440, "id_str": "1152924306315325440", "text": "@TheSenkari @sebh1981 @ForcesReviewUK I didn't say you were stupid, I said you were out of your element. \n\nIt's not\u2026 https://t.co/9kDPpZo6XI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9kDPpZo6XI", "expanded_url": "https://twitter.com/i/web/status/1152924306315325440", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921869210853376, "in_reply_to_status_id_str": "1152921869210853376", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:50:11 +0000 2019", "id": 1152923725911810048, "id_str": "1152923725911810048", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man again. I'm not \"diverting\" at all. \n\nBritish journalists pay their\u2026 https://t.co/nMSefc3Nsr", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/nMSefc3Nsr", "expanded_url": "https://twitter.com/i/web/status/1152923725911810048", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152921755415142400, "in_reply_to_status_id_str": "1152921755415142400", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:41:49 +0000 2019", "id": 1152921621302259712, "id_str": "1152921621302259712", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You're just showing how little you know about journalism and journalists. Stick to what you know.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920427955654657, "in_reply_to_status_id_str": "1152920427955654657", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:40:27 +0000 2019", "id": 1152921276220153856, "id_str": "1152921276220153856", "text": "@sebh1981 @TheSenkari @ForcesReviewUK Straw man. I own all of it, stand by it, and will continue to preach it. You'\u2026 https://t.co/7HkIj8wfYF", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/7HkIj8wfYF", "expanded_url": "https://twitter.com/i/web/status/1152921276220153856", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920805799604224, "in_reply_to_status_id_str": "1152920805799604224", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:38:48 +0000 2019", "id": 1152920861088899072, "id_str": "1152920861088899072", "text": "@sebh1981 @TheSenkari @ForcesReviewUK My god there are two people who are wrong on Twitter. Who'd have think it. Ge\u2026 https://t.co/mOISkNQPZK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/mOISkNQPZK", "expanded_url": "https://twitter.com/i/web/status/1152920861088899072", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152920357206134784, "in_reply_to_status_id_str": "1152920357206134784", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:35:26 +0000 2019", "id": 1152920013965275136, "id_str": "1152920013965275136", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You know what you know, keep up the good work, but unfortunately, you have no\u2026 https://t.co/jJIs5T0hAJ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/jJIs5T0hAJ", "expanded_url": "https://twitter.com/i/web/status/1152920013965275136", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152919554504429568, "in_reply_to_status_id_str": "1152919554504429568", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:34:04 +0000 2019", "id": 1152919669348732929, "id_str": "1152919669348732929", "text": "@sebh1981 @TheSenkari @ForcesReviewUK You keep saying that, but you're not helping anyone. You're a selfish, self-s\u2026 https://t.co/keGtBE4BcN", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/keGtBE4BcN", "expanded_url": "https://twitter.com/i/web/status/1152919669348732929", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917880754855936, "in_reply_to_status_id_str": "1152917880754855936", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:33:03 +0000 2019", "id": 1152919415069007877, "id_str": "1152919415069007877", "text": "@TheSenkari @sebh1981 @ForcesReviewUK How's that working out?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918985945636864, "in_reply_to_status_id_str": "1152918985945636864", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:32:08 +0000 2019", "id": 1152919186542387201, "id_str": "1152919186542387201", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You don't know any journalists. You should get out more. I'm sorry for you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152918118760689666, "in_reply_to_status_id_str": "1152918118760689666", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:27:50 +0000 2019", "id": 1152918101060661249, "id_str": "1152918101060661249", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Maybe you should read the initial post which clearly says \"every time\"; this\u2026 https://t.co/9VU9tFXSRM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/9VU9tFXSRM", "expanded_url": "https://twitter.com/i/web/status/1152918101060661249", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917799951618048, "in_reply_to_status_id_str": "1152917799951618048", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:55 +0000 2019", "id": 1152917872961818624, "id_str": "1152917872961818624", "text": "@TheSenkari @sebh1981 @ForcesReviewUK You should leave your basement and talk to journalists covering the story once and a while.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917312548327425, "in_reply_to_status_id_str": "1152917312548327425", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:26:05 +0000 2019", "id": 1152917661925498886, "id_str": "1152917661925498886", "text": "@sebh1981 @TheSenkari @ForcesReviewUK No, it isn't \"there\". You're full of shite, as always.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152917321452855297, "in_reply_to_status_id_str": "1152917321452855297", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:23:16 +0000 2019", "id": 1152916953222307840, "id_str": "1152916953222307840", "text": "@sebh1981 @TheSenkari @ForcesReviewUK I love it when you self-identify as a self-serving troll without any care for\u2026 https://t.co/bmac8fciiI", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [10, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/bmac8fciiI", "expanded_url": "https://twitter.com/i/web/status/1152916953222307840", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152915184190726147, "in_reply_to_status_id_str": "1152915184190726147", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:20:35 +0000 2019", "id": 1152916278958596096, "id_str": "1152916278958596096", "text": "@TheSenkari @sebh1981 @ForcesReviewUK Marine VHF 16 is not CB, guy.\n\nYou think journalists take up amateur radio wh\u2026 https://t.co/Z9qVDFvY9V", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": [{"url": "https://t.co/Z9qVDFvY9V", "expanded_url": "https://twitter.com/i/web/status/1152916278958596096", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152914287897272325, "in_reply_to_status_id_str": "1152914287897272325", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:10:27 +0000 2019", "id": 1152913726493921280, "id_str": "1152913726493921280", "text": "@TheSenkari @sebh1981 @ForcesReviewUK ...who don't have access to the info.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheSenkari", "name": "Marcus Rizzo", "id": 2535011802, "id_str": "2535011802", "indices": [0, 11]}, {"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [12, 21]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [22, 37]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152913267586732032, "in_reply_to_status_id_str": "1152913267586732032", "in_reply_to_user_id": 2535011802, "in_reply_to_user_id_str": "2535011802", "in_reply_to_screen_name": "TheSenkari", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:03:32 +0000 2019", "id": 1152911985463504896, "id_str": "1152911985463504896", "text": "@9arsth I have no idea what they said, because nobody has published any audio - if there was any.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152901151852904448, "in_reply_to_status_id_str": "1152901151852904448", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 12:02:35 +0000 2019", "id": 1152911750209126401, "id_str": "1152911750209126401", "text": "@sebh1981 @ForcesReviewUK Do you think American or British journalists sit in the middle of the Persian Gulf waitin\u2026 https://t.co/srpY3PSF2D", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sebh1981", "name": "Seb H", "id": 334929049, "id_str": "334929049", "indices": [0, 9]}, {"screen_name": "ForcesReviewUK", "name": "HMArmedForcesReview", "id": 2221525081, "id_str": "2221525081", "indices": [10, 25]}], "urls": [{"url": "https://t.co/srpY3PSF2D", "expanded_url": "https://twitter.com/i/web/status/1152911750209126401", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152896616006848512, "in_reply_to_status_id_str": "1152896616006848512", "in_reply_to_user_id": 334929049, "in_reply_to_user_id_str": "334929049", "in_reply_to_screen_name": "sebh1981", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": true, "retweeted": false, "lang": "en"},{"created_at": "Sun Jul 21 10:51:53 +0000 2019", "id": 1152893955031412736, "id_str": "1152893955031412736", "text": "RT @5472_nde: https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "5472_nde", "name": "nde", "id": 3909450376, "id_str": "3909450376", "indices": [3, 12]}], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [14, 37]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 10:45:56 +0000 2019", "id": 1152892460080742400, "id_str": "1152892460080742400", "text": "https://t.co/bOfmlyfzjt\nU.S. to expand and upgrade runways of old Cold War base in Iceland", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/bOfmlyfzjt", "expanded_url": "https://defence-blog.com/news/u-s-to-expand-and-upgrade-runways-of-old-cold-war-base-in-iceland.html", "display_url": "defence-blog.com/news/u-s-to-ex\u2026", "indices": [0, 23]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3909450376, "id_str": "3909450376", "name": "nde", "screen_name": "5472_nde", "location": "United Kingdom", "description": "Ex RAF cold war veteran, experience in military intelligence. Interest in all aspects of military aviation/ defence/conflict/ Russian Military.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6745, "friends_count": 147, "listed_count": 123, "created_at": "Fri Oct 09 13:48:45 +0000 2015", "favourites_count": 5694, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 37999, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/979135940517036038/hcOjjHU7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3909450376/1521804181", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 15, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:47:47 +0000 2019", "id": 1152892924763541504, "id_str": "1152892924763541504", "text": "We should expect (and demand) they release this kind of audio record every time. https://t.co/ajrCNgwuLl", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ajrCNgwuLl", "expanded_url": "https://twitter.com/globaldryad/status/1152671785407717376", "display_url": "twitter.com/globaldryad/st\u2026", "indices": [81, 104]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152671785407717376, "quoted_status_id_str": "1152671785407717376", "quoted_status": {"created_at": "Sat Jul 20 20:09:03 +0000 2019", "id": 1152671785407717376, "id_str": "1152671785407717376", "text": "#Exclusive VHF audio HMS Montrose & MV Stena Impero: 'If you obey you will be safe, alter your course . . .Under in\u2026 https://t.co/Ki3nmKgrYz", "truncated": true, "entities": {"hashtags": [{"text": "Exclusive", "indices": [0, 10]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Ki3nmKgrYz", "expanded_url": "https://twitter.com/i/web/status/1152671785407717376", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [121, 144]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1086216191159472128, "id_str": "1086216191159472128", "name": "Dryad Global", "screen_name": "GlobalDryad", "location": "London, England", "description": "Adding Clarity to Decision Making in a Complex World. Experts in Global Issues and Maritime Security Risk Management.", "url": "https://t.co/DeyKiwdgkr", "entities": {"url": {"urls": [{"url": "https://t.co/DeyKiwdgkr", "expanded_url": "http://www.dryadglobal.com", "display_url": "dryadglobal.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 872, "friends_count": 1554, "listed_count": 8, "created_at": "Fri Jan 18 10:58:15 +0000 2019", "favourites_count": 362, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 316, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087340999159021569/fFBQLeX3_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1086216191159472128/1558125258", "profile_link_color": "124D5D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 117, "favorite_count": 121, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 4, "favorite_count": 28, "favorited": true, "retweeted": true, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 10:40:58 +0000 2019", "id": 1152891210492710912, "id_str": "1152891210492710912", "text": "RT @maleshov: Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "maleshov", "name": "Maleshov", "id": 2782391164, "id_str": "2782391164", "indices": [3, 12]}], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [58, 81], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}, "source_status_id": 1152833648544165888, "source_status_id_str": "1152833648544165888", "source_user_id": 2782391164, "source_user_id_str": "2782391164"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sun Jul 21 06:52:15 +0000 2019", "id": 1152833648544165888, "id_str": "1152833648544165888", "text": "Current military traffick over Persian gulf https://t.co/FpzhxgZszk", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152833632706473985, "id_str": "1152833632706473985", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFLqXsAEWKIy.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"medium": {"w": 675, "h": 1200, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 1280, "resize": "fit"}, "small": {"w": 383, "h": 680, "resize": "fit"}}}, {"id": 1152833640503664642, "id_str": "1152833640503664642", "indices": [44, 67], "media_url": "http://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "media_url_https": "https://pbs.twimg.com/media/D_-wFotXYAIiyPt.jpg", "url": "https://t.co/FpzhxgZszk", "display_url": "pic.twitter.com/FpzhxgZszk", "expanded_url": "https://twitter.com/maleshov/status/1152833648544165888/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 663, "h": 680, "resize": "fit"}, "large": {"w": 719, "h": 737, "resize": "fit"}, "medium": {"w": 719, "h": 737, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 2782391164, "id_str": "2782391164", "name": "Maleshov", "screen_name": "maleshov", "location": "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434, \u0420\u043e\u0441\u0441\u0438\u044f", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 769, "friends_count": 994, "listed_count": 29, "created_at": "Wed Sep 24 10:59:14 +0000 2014", "favourites_count": 2979, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11592, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1077125002347069441/2r6Wvms6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2782391164/1563477630", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 6, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:18:34 +0000 2019", "id": 1152734577598902272, "id_str": "1152734577598902272", "text": "Beautiful. https://t.co/j9ApdNyeKd", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9ApdNyeKd", "expanded_url": "https://twitter.com/AwardsDarwin/status/1152710633860808705", "display_url": "twitter.com/AwardsDarwin/s\u2026", "indices": [11, 34]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152710633860808705, "quoted_status_id_str": "1152710633860808705", "quoted_status": {"created_at": "Sat Jul 20 22:43:26 +0000 2019", "id": 1152710633860808705, "id_str": "1152710633860808705", "text": "I\u2019ll just call the legend Buzz Aldrin a fraud and coward, what could go wrong? https://t.co/DdFVRwXqZx", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703"}]}, "extended_entities": {"media": [{"id": 1086968166201229312, "id_str": "1086968166201229312", "indices": [80, 103], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1086968166201229312/pu/img/W8qUyZyT9HvtM3cC.jpg", "url": "https://t.co/DdFVRwXqZx", "display_url": "pic.twitter.com/DdFVRwXqZx", "expanded_url": "https://twitter.com/MeredithFrost/status/1086968219238318080/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "source_status_id": 1086968219238318080, "source_status_id_str": "1086968219238318080", "source_user_id": 26659703, "source_user_id_str": "26659703", "video_info": {"aspect_ratio": [16, 9], "duration_millis": 17223, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/320x180/Pf42JC7KtgUT2vOZ.mp4?tag=6"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/1280x720/olBpOZI5sv6In3lr.mp4?tag=6"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/vid/640x360/7VXNmtM714lGKLKv.mp4?tag=6"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1086968166201229312/pu/pl/umLlfdYtJ-M9-9Bw.m3u8?tag=6"}]}, "additional_media_info": {"monetizable": false, "source_user": {"id": 26659703, "id_str": "26659703", "name": "Meredith Frost", "screen_name": "MeredithFrost", "location": "New York, NY", "description": "Producer. Photographer. @ABC News alum. My favorite superhero is Lois Lane.", "url": "https://t.co/auY794eySG", "entities": {"url": {"urls": [{"url": "https://t.co/auY794eySG", "expanded_url": "http://www.mfrostyphotography.com", "display_url": "mfrostyphotography.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 153690, "friends_count": 241, "listed_count": 1703, "created_at": "Thu Mar 26 01:55:43 +0000 2009", "favourites_count": 80034, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21251, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "5B5D63", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1050941738309816320/UY5TR-XY_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/26659703/1540225151", "profile_link_color": "C90606", "profile_sidebar_border_color": "09383B", "profile_sidebar_fill_color": "777E85", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3125154047, "id_str": "3125154047", "name": "Darwin Award \ud83d\udd1e", "screen_name": "AwardsDarwin", "location": "Don't Worry No One Dies.", "description": "All come close to winning a Darwin Award. We are FAN/ parody* of the videos and do not claim any ownership or copyright. Support the account @ PayPal \u2b07\ufe0f", "url": "https://t.co/nbM7dXfyY9", "entities": {"url": {"urls": [{"url": "https://t.co/nbM7dXfyY9", "expanded_url": "https://www.paypal.me/youhadonejob", "display_url": "paypal.me/youhadonejob", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 781321, "friends_count": 583, "listed_count": 4753, "created_at": "Sat Mar 28 23:21:09 +0000 2015", "favourites_count": 3160, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1069, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/839797892458098688/z5gzs0Tz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3125154047/1458921245", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1556, "favorite_count": 6801, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "en"}, "retweet_count": 1, "favorite_count": 17, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sun Jul 21 00:17:41 +0000 2019", "id": 1152734354621304833, "id_str": "1152734354621304833", "text": "@9arsth Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152733152193855488, "in_reply_to_status_id_str": "1152733152193855488", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:15:38 +0000 2019", "id": 1152718737008713729, "id_str": "1152718737008713729", "text": "@DavidNi61157349 @jdsnowdy Once boarded, would they swing the tanker toward Iran? I would think so... they were sti\u2026 https://t.co/2N60AwYFkG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "DavidNi61157349", "name": "Dave N", "id": 913356960279486464, "id_str": "913356960279486464", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": [{"url": "https://t.co/2N60AwYFkG", "expanded_url": "https://twitter.com/i/web/status/1152718737008713729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152713994823774208, "in_reply_to_status_id_str": "1152713994823774208", "in_reply_to_user_id": 913356960279486464, "in_reply_to_user_id_str": "913356960279486464", "in_reply_to_screen_name": "DavidNi61157349", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 23:14:04 +0000 2019", "id": 1152718344950358016, "id_str": "1152718344950358016", "text": "@Drumboy44DWS LOL", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Drumboy44DWS", "name": "Andrew McAlister", "id": 879417781623504898, "id_str": "879417781623504898", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152718129673494528, "in_reply_to_status_id_str": "1152718129673494528", "in_reply_to_user_id": 879417781623504898, "in_reply_to_user_id_str": "879417781623504898", "in_reply_to_screen_name": "Drumboy44DWS", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "und"},{"created_at": "Sat Jul 20 22:54:57 +0000 2019", "id": 1152713531747446784, "id_str": "1152713531747446784", "text": "@ego_tuus @ModeratorDefcon Hard to do to only one ship, and it looks like it came back before they were done taking\u2026 https://t.co/AV9Vt4z1fQ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ego_tuus", "name": "EgoTuus", "id": 1134778544494657536, "id_str": "1134778544494657536", "indices": [0, 9]}, {"screen_name": "ModeratorDefcon", "name": "defcon moderator", "id": 904400045579145218, "id_str": "904400045579145218", "indices": [10, 26]}], "urls": [{"url": "https://t.co/AV9Vt4z1fQ", "expanded_url": "https://twitter.com/i/web/status/1152713531747446784", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152706801739206657, "in_reply_to_status_id_str": "1152706801739206657", "in_reply_to_user_id": 1134778544494657536, "in_reply_to_user_id_str": "1134778544494657536", "in_reply_to_screen_name": "ego_tuus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:25:56 +0000 2019", "id": 1152706233297723393, "id_str": "1152706233297723393", "text": "@chekaschmecka \"Hanover Fiste\"? I bow to your brilliant naming choice :)\nh/t to you, sir.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chekaschmecka", "name": "Hanover Fiste", "id": 957156757616422912, "id_str": "957156757616422912", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 957156757616422912, "in_reply_to_user_id_str": "957156757616422912", "in_reply_to_screen_name": "chekaschmecka", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:19:29 +0000 2019", "id": 1152704606490779648, "id_str": "1152704606490779648", "text": "@GarfieldsLasgna Sounds a little too \"WWE\", no? https://t.co/iou93MnHWw", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}], "urls": [], "media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152704564665233414, "id_str": "1152704564665233414", "indices": [48, 71], "media_url": "http://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/D_86sbvXsAYF6uh.jpg", "url": "https://t.co/iou93MnHWw", "display_url": "pic.twitter.com/iou93MnHWw", "expanded_url": "https://twitter.com/steffanwatkins/status/1152704606490779648/photo/1", "type": "animated_gif", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 480, "h": 366, "resize": "fit"}, "medium": {"w": 480, "h": 366, "resize": "fit"}, "small": {"w": 480, "h": 366, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 61], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/D_86sbvXsAYF6uh.mp4"}]}}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152703059405037568, "in_reply_to_status_id_str": "1152703059405037568", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 22:06:17 +0000 2019", "id": 1152701286984355842, "id_str": "1152701286984355842", "text": "@iconocaustic Friendly fire! Friendly fire!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "iconocaustic", "name": "droolingdonald", "id": 90972286, "id_str": "90972286", "indices": [0, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": 1152700822687494149, "in_reply_to_status_id_str": "1152700822687494149", "in_reply_to_user_id": 90972286, "in_reply_to_user_id_str": "90972286", "in_reply_to_screen_name": "iconocaustic", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 22:01:54 +0000 2019", "id": 1152700184524185601, "id_str": "1152700184524185601", "text": "@vcdgf555 Printing new business cards right away... :)\nTY!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "vcdgf555", "name": "Oppa Gopnik Style", "id": 1100266332283559936, "id_str": "1100266332283559936", "indices": [0, 9]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152699777684930560, "in_reply_to_status_id_str": "1152699777684930560", "in_reply_to_user_id": 1100266332283559936, "in_reply_to_user_id_str": "1100266332283559936", "in_reply_to_screen_name": "vcdgf555", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:41 +0000 2019", "id": 1152698117604724736, "id_str": "1152698117604724736", "text": "@seth_worstell Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "seth_worstell", "name": "Seth Worstell", "id": 770324743878799361, "id_str": "770324743878799361", "indices": [0, 14]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152696318403502082, "in_reply_to_status_id_str": "1152696318403502082", "in_reply_to_user_id": 770324743878799361, "in_reply_to_user_id_str": "770324743878799361", "in_reply_to_screen_name": "seth_worstell", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:28 +0000 2019", "id": 1152698060138565633, "id_str": "1152698060138565633", "text": "@LaVieEnBleu108 @ali6666_sk @sivand_84 You're totally blowing my cover!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "LaVieEnBleu108", "name": "La Vie en Bleu 108", "id": 931195873777762306, "id_str": "931195873777762306", "indices": [0, 15]}, {"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [16, 27]}, {"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [28, 38]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697648941535232, "in_reply_to_status_id_str": "1152697648941535232", "in_reply_to_user_id": 931195873777762306, "in_reply_to_user_id_str": "931195873777762306", "in_reply_to_screen_name": "LaVieEnBleu108", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:53:14 +0000 2019", "id": 1152698004245233666, "id_str": "1152698004245233666", "text": "@miladplus Thank you sir, I appreciate your kind words!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "miladplus", "name": "\u0645\u06cc\u0644\u0627\u062f \u0645\u062d\u0645\u062f\u06cc\u2066\u2069", "id": 415115678, "id_str": "415115678", "indices": [0, 10]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152697670735208448, "in_reply_to_status_id_str": "1152697670735208448", "in_reply_to_user_id": 415115678, "in_reply_to_user_id_str": "415115678", "in_reply_to_screen_name": "miladplus", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 21:39:48 +0000 2019", "id": 1152694620029181952, "id_str": "1152694620029181952", "text": "\ud83d\ude02\ud83d\ude02\ud83d\ude02 https://t.co/j9u0fbpbq6", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/j9u0fbpbq6", "expanded_url": "https://twitter.com/ali6666_sk/status/1152686929156198400", "display_url": "twitter.com/ali6666_sk/sta\u2026", "indices": [4, 27]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152686929156198400, "quoted_status_id_str": "1152686929156198400", "quoted_status": {"created_at": "Sat Jul 20 21:09:14 +0000 2019", "id": 1152686929156198400, "id_str": "1152686929156198400", "text": "@sivand_84 @steffanwatkins Steffan is propagandist and warmonger indeed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "sivand_84", "name": "Sohail", "id": 2501175036, "id_str": "2501175036", "indices": [0, 10]}, {"screen_name": "steffanwatkins", "name": "Steffan Watkins", "id": 15495802, "id_str": "15495802", "indices": [11, 26]}], "urls": []}, "source": "Twitter Web App", "in_reply_to_status_id": 1152684214673915909, "in_reply_to_status_id_str": "1152684214673915909", "in_reply_to_user_id": 2501175036, "in_reply_to_user_id_str": "2501175036", "in_reply_to_screen_name": "sivand_84", "user": {"id": 3432445274, "id_str": "3432445274", "name": "Rustam Ali", "screen_name": "ali6666_sk", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 570, "friends_count": 4819, "listed_count": 0, "created_at": "Thu Sep 03 03:00:13 +0000 2015", "favourites_count": 24098, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2690, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1122952958663110658/U3zrA30I_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3432445274/1539504620", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 35, "favorited": true, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 21:13:57 +0000 2019", "id": 1152688117079580672, "id_str": "1152688117079580672", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/W9HECWx7Dj", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/W9HECWx7Dj", "expanded_url": "https://twitter.com/i/web/status/1152688117079580672", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152670024995397632, "quoted_status_id_str": "1152670024995397632", "quoted_status": {"created_at": "Sat Jul 20 20:02:04 +0000 2019", "id": 1152670024995397632, "id_str": "1152670024995397632", "text": "Another support An-26 departed shortly after then perhaps the surprise of the trip arrived, a USAF OC-135B Open Ski\u2026 https://t.co/fjqYCcyXXM", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/fjqYCcyXXM", "expanded_url": "https://twitter.com/i/web/status/1152670024995397632", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": 1152669480872566789, "in_reply_to_status_id_str": "1152669480872566789", "in_reply_to_user_id": 420394711, "in_reply_to_user_id_str": "420394711", "in_reply_to_screen_name": "DRAviography", "user": {"id": 420394711, "id_str": "420394711", "name": "Dan Reeves", "screen_name": "DRAviography", "location": "East Goscote nr Leicester", "description": "Proud Englishman,Military aircraft but Russian ones especially. Play badminton casually. Contributor at MAIW & photographer at Jet Junkies", "url": "https://t.co/5S9OSPMjfr", "entities": {"url": {"urls": [{"url": "https://t.co/5S9OSPMjfr", "expanded_url": "https://dpreeves.wixsite.com/danreevesaviography", "display_url": "dpreeves.wixsite.com/danreevesaviog\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1337, "friends_count": 1500, "listed_count": 14, "created_at": "Thu Nov 24 15:30:34 +0000 2011", "favourites_count": 72, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11402, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "352726", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/975109763775295488/81XZPS1e_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420394711/1563651540", "profile_link_color": "000000", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 3, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 21:06:07 +0000 2019", "id": 1152686143814737920, "id_str": "1152686143814737920", "text": "@poshea @pmakela1 Charitable indeed lol", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "poshea", "name": "Patrick O'Shea", "id": 15001447, "id_str": "15001447", "indices": [0, 7]}, {"screen_name": "pmakela1", "name": "Petri M\u00e4kel\u00e4", "id": 829647236, "id_str": "829647236", "indices": [8, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152684596380803072, "in_reply_to_status_id_str": "1152684596380803072", "in_reply_to_user_id": 15001447, "in_reply_to_user_id_str": "15001447", "in_reply_to_screen_name": "poshea", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:56:17 +0000 2019", "id": 1152683669938671616, "id_str": "1152683669938671616", "text": "@ali6666_sk Where's the mystery in that?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678783704588288, "in_reply_to_status_id_str": "1152678783704588288", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:50:06 +0000 2019", "id": 1152682113549897729, "id_str": "1152682113549897729", "text": "@jdsnowdy They seemed to turn it on before or during the boarding, but I don't have precise timing of the fast-ropi\u2026 https://t.co/VRgCFzwmST", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [0, 9]}], "urls": [{"url": "https://t.co/VRgCFzwmST", "expanded_url": "https://twitter.com/i/web/status/1152682113549897729", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152679894049931264, "in_reply_to_status_id_str": "1152679894049931264", "in_reply_to_user_id": 197967692, "in_reply_to_user_id_str": "197967692", "in_reply_to_screen_name": "jdsnowdy", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:48:41 +0000 2019", "id": 1152681758229504000, "id_str": "1152681758229504000", "text": "@GarfieldsLasgna @jdsnowdy No indication of that tho", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "GarfieldsLasgna", "name": "Brent Begyn", "id": 747260000, "id_str": "747260000", "indices": [0, 16]}, {"screen_name": "jdsnowdy", "name": "Derrick Snowdy", "id": 197967692, "id_str": "197967692", "indices": [17, 26]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152680604904939521, "in_reply_to_status_id_str": "1152680604904939521", "in_reply_to_user_id": 747260000, "in_reply_to_user_id_str": "747260000", "in_reply_to_screen_name": "GarfieldsLasgna", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:40:03 +0000 2019", "id": 1152679585844256770, "id_str": "1152679585844256770", "text": "The MarineTraffic \"map\" view sews together data points, and doesn't always represent every point that was picked up\u2026 https://t.co/X8oyGCsSPK", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/X8oyGCsSPK", "expanded_url": "https://twitter.com/i/web/status/1152679585844256770", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152678980111294465, "in_reply_to_status_id_str": "1152678980111294465", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:37:39 +0000 2019", "id": 1152678980111294465, "id_str": "1152678980111294465", "text": "Data suggests that Stena Impero had turned off her transponder while transiting the strait or Hormuz, and shortly a\u2026 https://t.co/VZ49TVGfWd", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VZ49TVGfWd", "expanded_url": "https://twitter.com/i/web/status/1152678980111294465", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152564428753252352, "in_reply_to_status_id_str": "1152564428753252352", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 22, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:33:01 +0000 2019", "id": 1152677816686829571, "id_str": "1152677816686829571", "text": "@ali6666_sk Still working on those, gotta get back to you.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ali6666_sk", "name": "Rustam Ali", "id": 3432445274, "id_str": "3432445274", "indices": [0, 11]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152675940633382912, "in_reply_to_status_id_str": "1152675940633382912", "in_reply_to_user_id": 3432445274, "in_reply_to_user_id_str": "3432445274", "in_reply_to_screen_name": "ali6666_sk", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 20:30:17 +0000 2019", "id": 1152677129051693058, "id_str": "1152677129051693058", "text": "@9arsth I take that back. They seem to have shut it off at 14:36Z; they'd previously been transmitting at ~3min int\u2026 https://t.co/U1SQxgDPuZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/U1SQxgDPuZ", "expanded_url": "https://twitter.com/i/web/status/1152677129051693058", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152671859130937347, "in_reply_to_status_id_str": "1152671859130937347", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 20:09:21 +0000 2019", "id": 1152671859130937347, "id_str": "1152671859130937347", "text": "@9arsth \"off\" is hard to determine, I can say https://t.co/WIVCJcfBJl was not getting frequent updates, but I can't\u2026 https://t.co/IRPljCTe8L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "9arsth", "name": "Davy Jones [BTC&LN only]", "id": 4255701734, "id_str": "4255701734", "indices": [0, 7]}], "urls": [{"url": "https://t.co/WIVCJcfBJl", "expanded_url": "http://MarineTraffic.com", "display_url": "MarineTraffic.com", "indices": [46, 69]}, {"url": "https://t.co/IRPljCTe8L", "expanded_url": "https://twitter.com/i/web/status/1152671859130937347", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152669268305010688, "in_reply_to_status_id_str": "1152669268305010688", "in_reply_to_user_id": 4255701734, "in_reply_to_user_id_str": "4255701734", "in_reply_to_screen_name": "9arsth", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 19:50:48 +0000 2019", "id": 1152667190669262848, "id_str": "1152667190669262848", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 4/4 oops /thread", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666630561980418, "in_reply_to_status_id_str": "1152666630561980418", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:48:34 +0000 2019", "id": 1152666630561980418, "id_str": "1152666630561980418", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 3/ Anyone who thinks turning off AIS impedes the Iranians is grossly underestima\u2026 https://t.co/i52y4Mbuud", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/i52y4Mbuud", "expanded_url": "https://twitter.com/i/web/status/1152666630561980418", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666415637438464, "in_reply_to_status_id_str": "1152666415637438464", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:47:43 +0000 2019", "id": 1152666415637438464, "id_str": "1152666415637438464", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 2/ Also, Iran is quite good at tracking ships, they've been doing this cat and m\u2026 https://t.co/pqBpnCTYWn", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/pqBpnCTYWn", "expanded_url": "https://twitter.com/i/web/status/1152666415637438464", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152666232090505216, "in_reply_to_status_id_str": "1152666232090505216", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:46:59 +0000 2019", "id": 1152666232090505216, "id_str": "1152666232090505216", "text": "@TomCaspian7 @TheBrit96 @ELINTNews 1/ What's shown above is not simply an RN ship appearing and disappearing; there\u2026 https://t.co/InZCzE8m38", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TomCaspian7", "name": "Tom Caspian", "id": 975081980172886016, "id_str": "975081980172886016", "indices": [0, 12]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [13, 23]}, {"screen_name": "ELINTNews", "name": "ELINT News", "id": 841694471293173760, "id_str": "841694471293173760", "indices": [24, 34]}], "urls": [{"url": "https://t.co/InZCzE8m38", "expanded_url": "https://twitter.com/i/web/status/1152666232090505216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152662913989169154, "in_reply_to_status_id_str": "1152662913989169154", "in_reply_to_user_id": 975081980172886016, "in_reply_to_user_id_str": "975081980172886016", "in_reply_to_screen_name": "TomCaspian7", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 19:00:55 +0000 2019", "id": 1152654638212165632, "id_str": "1152654638212165632", "text": "RT @BabakTaghvaee: #BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem seve\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "SaudiArabia", "indices": [30, 42]}, {"text": "Iran", "indices": [56, 61]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 16:54:59 +0000 2019", "id": 1152622946000809984, "id_str": "1152622946000809984", "text": "#BREAKING: #SaudiArabia released the #Iran|ian oil tanker which had been seized by them after it had engine problem\u2026 https://t.co/EpUedJ1CB8", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "SaudiArabia", "indices": [11, 23]}, {"text": "Iran", "indices": [37, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EpUedJ1CB8", "expanded_url": "https://twitter.com/i/web/status/1152622946000809984", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 82, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 55, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 18:01:26 +0000 2019", "id": 1152639666887307265, "id_str": "1152639666887307265", "text": "@chodpollard ...I'm sorry, maybe I need another coffee, but that went over my head. What did you mean?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "chodpollard", "name": "Chod", "id": 1914238183, "id_str": "1914238183", "indices": [0, 12]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152629128954306561, "in_reply_to_status_id_str": "1152629128954306561", "in_reply_to_user_id": 1914238183, "in_reply_to_user_id_str": "1914238183", "in_reply_to_screen_name": "chodpollard", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 16:47:59 +0000 2019", "id": 1152621182962872320, "id_str": "1152621182962872320", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk *UK airspace; pardon\n\nSorry to make you write out that lo\u2026 https://t.co/4q0RBw6lZG", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/4q0RBw6lZG", "expanded_url": "https://twitter.com/i/web/status/1152621182962872320", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152619671444738050, "in_reply_to_status_id_str": "1152619671444738050", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:58:37 +0000 2019", "id": 1152608758763311104, "id_str": "1152608758763311104", "text": "If you're not following Chris Ramsay on YouTube, check him out; I hope you like what you see, and hopefully subscri\u2026 https://t.co/DLULBYXMFZ", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DLULBYXMFZ", "expanded_url": "https://twitter.com/i/web/status/1152608758763311104", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152603388611366913, "quoted_status_id_str": "1152603388611366913", "quoted_status": {"created_at": "Sat Jul 20 15:37:16 +0000 2019", "id": 1152603388611366913, "id_str": "1152603388611366913", "text": "Adding actual magic to sleight of hand can yield delightful results. #magic #sleightofhand https://t.co/ewyUq6QO24", "truncated": false, "entities": {"hashtags": [{"text": "magic", "indices": [69, 75]}, {"text": "sleightofhand", "indices": [76, 90]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152603302909153280, "id_str": "1152603302909153280", "indices": [91, 114], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1152603302909153280/pu/img/OzH7Pla9h1yWK6xM.jpg", "url": "https://t.co/ewyUq6QO24", "display_url": "pic.twitter.com/ewyUq6QO24", "expanded_url": "https://twitter.com/chrisramsay52/status/1152603388611366913/video/1", "type": "video", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 30447, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/1280x720/QX9WPzD6hrKWxsql.mp4?tag=10"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/480x270/72R5JAwcHq3IDPv4.mp4?tag=10"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/vid/640x360/VUTnc0JHvU8iU1kb.mp4?tag=10"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1152603302909153280/pu/pl/t_YhGovuyEiKcOnS.m3u8?tag=10"}]}, "additional_media_info": {"monetizable": false}}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 590500852, "id_str": "590500852", "name": "Chris Ramsay", "screen_name": "chrisramsay52", "location": "Montreal", "description": "Canadian Youtuber, Magician and amateur puzzle solver, Actor in Saw IX // 3 Million SUBSCRIBERS", "url": "https://t.co/Q3eTq4JaLl", "entities": {"url": {"urls": [{"url": "https://t.co/Q3eTq4JaLl", "expanded_url": "http://www.youtube.com/chrisramsay52", "display_url": "youtube.com/chrisramsay52", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 66019, "friends_count": 300, "listed_count": 73, "created_at": "Sat May 26 02:04:02 +0000 2012", "favourites_count": 11704, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4831, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1131787200859918336/itXFemvB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/590500852/1489495237", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 67, "favorite_count": 521, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 7, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 15:53:18 +0000 2019", "id": 1152607422642610178, "id_str": "1152607422642610178", "text": "@CrispinBurke Well, not until now! ;)", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "CrispinBurke", "name": "Crispin Burke", "id": 42343812, "id_str": "42343812", "indices": [0, 13]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152594323881562112, "in_reply_to_status_id_str": "1152594323881562112", "in_reply_to_user_id": 42343812, "in_reply_to_user_id_str": "42343812", "in_reply_to_screen_name": "CrispinBurke", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 15:48:24 +0000 2019", "id": 1152606189076852736, "id_str": "1152606189076852736", "text": "RT @BabakTaghvaee: #BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-171 tr\u2026", "truncated": false, "entities": {"hashtags": [{"text": "BREAKING", "indices": [19, 28]}, {"text": "IRGC", "indices": [30, 35]}, {"text": "UK", "indices": [83, 86]}, {"text": "HormuzStrait", "indices": [103, 116]}], "symbols": [], "user_mentions": [{"screen_name": "BabakTaghvaee", "name": "Babak Taghvaee", "id": 3778429406, "id_str": "3778429406", "indices": [3, 17]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 15:38:09 +0000 2019", "id": 1152603608455815169, "id_str": "1152603608455815169", "text": "#BREAKING: #IRGC released video of seizure of Stena Impero, the #UK's Oil Tanker in #HormuzStrait yesterday. A Mi-1\u2026 https://t.co/rerWEtisXh", "truncated": true, "entities": {"hashtags": [{"text": "BREAKING", "indices": [0, 9]}, {"text": "IRGC", "indices": [11, 16]}, {"text": "UK", "indices": [64, 67]}, {"text": "HormuzStrait", "indices": [84, 97]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rerWEtisXh", "expanded_url": "https://twitter.com/i/web/status/1152603608455815169", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 3778429406, "id_str": "3778429406", "name": "Babak Taghvaee", "screen_name": "BabakTaghvaee", "location": "Valletta, Malta", "description": "Author, Historian,Defense Analyst. Correspondent of @PtisiMagazine Contributor of @AIR_Intl @indypersian @Globe_Post @KayhanLondon @BBCpersian", "url": "https://t.co/PGYBwEsR2w", "entities": {"url": {"urls": [{"url": "https://t.co/PGYBwEsR2w", "expanded_url": "https://www.theglobepost.com/author/babak-taghvaee/", "display_url": "theglobepost.com/author/babak-t\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 26469, "friends_count": 375, "listed_count": 709, "created_at": "Sun Oct 04 06:52:10 +0000 2015", "favourites_count": 27406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 20303, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/978567525830135808/FmQO3iSu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3778429406/1520597131", "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 127, "favorite_count": 136, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 127, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:56:58 +0000 2019", "id": 1152593244200558592, "id_str": "1152593244200558592", "text": "RT @spyblog: Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "spyblog", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "id": 101067053, "id_str": "101067053", "indices": [3, 11]}, {"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [116, 122]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [129, 140]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [88, 111]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:35:07 +0000 2019", "id": 1152587747078676480, "id_str": "1152587747078676480", "text": "Hackers breach FSB contractor, expose Tor deanonymization project and more https://t.co/26Z9sFWH01 via @ZDNet & @campuscodi", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "ZDNet", "name": "ZDNet", "id": 3819701, "id_str": "3819701", "indices": [103, 109]}, {"screen_name": "campuscodi", "name": "Catalin Cimpanu", "id": 39176606, "id_str": "39176606", "indices": [116, 127]}], "urls": [{"url": "https://t.co/26Z9sFWH01", "expanded_url": "https://zd.net/2JIHWbX", "display_url": "zd.net/2JIHWbX", "indices": [75, 98]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 101067053, "id_str": "101067053", "name": "Spy Blog \ud83c\uddec\ud83c\udde7", "screen_name": "spyblog", "location": "London, United Kingdom", "description": "Privacy Security Anonymity Obfuscation, UK Surveillance Database State PGP/GPG 4C7F2E878638F21F I had levyr a letter be brent then lost ne forte videant Romani", "url": "https://t.co/uxUbbY5NTG", "entities": {"url": {"urls": [{"url": "https://t.co/uxUbbY5NTG", "expanded_url": "https://SpyBlog.org.uk", "display_url": "SpyBlog.org.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6981, "friends_count": 4139, "listed_count": 401, "created_at": "Fri Jan 01 21:53:50 +0000 2010", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 33380, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/604342894/cx72_normal.jpg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 52, "favorite_count": 59, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 52, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:52:20 +0000 2019", "id": 1152592078800588800, "id_str": "1152592078800588800", "text": "RT @nat_ahoy: Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "nat_ahoy", "name": "N South", "id": 986157852472602626, "id_str": "986157852472602626", "indices": [3, 12]}], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [60, 83]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:45:24 +0000 2019", "id": 1152590334305722371, "id_str": "1152590334305722371", "text": "Chinese PLA Navy Xi'an to visit St Petersburg https://t.co/f1p4SDx8sS", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1p4SDx8sS", "expanded_url": "https://tass.ru/armiya-i-opk/6684904/amp?__twitter_impression=true", "display_url": "tass.ru/armiya-i-opk/6\u2026", "indices": [46, 69]}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 986157852472602626, "id_str": "986157852472602626", "name": "N South", "screen_name": "nat_ahoy", "location": "", "description": "Ship & avgeek. Keen maritime info curator & commentator. Interest in the world around me: ex-student on polar regions. Work opportunity hunting.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "friends_count": 94, "listed_count": 2, "created_at": "Tue Apr 17 08:22:08 +0000 2018", "favourites_count": 1702, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4969, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1134441437251211266/eKb4n5yq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/986157852472602626/1536388666", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:40:26 +0000 2019", "id": 1152589082733809670, "id_str": "1152589082733809670", "text": "RT @Edward_Sn0wden: #\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 1993 \u0433.\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [20, 24]}, {"text": "US", "indices": [83, 86]}], "symbols": [], "user_mentions": [{"screen_name": "Edward_Sn0wden", "name": "Bender Az-Rodriges", "id": 1638615144, "id_str": "1638615144", "indices": [3, 18]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 12:03:27 +0000 2019", "id": 1152549576638914560, "id_str": "1152549576638914560", "text": "#\u0412\u041c\u0424 \u0421\u0445\u0435\u043c\u0430 \u0441\u0442\u043e\u043b\u043a\u043d\u043e\u0432\u0435\u043d\u0438\u044f \u0420\u041f\u041a\u0421\u041d \"\u041d\u043e\u0432\u043e\u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\" \u043f\u0440\u043e\u0435\u043a\u0442\u0430 667\u0431\u0434\u0440\u043c \u0441 #US \u041f\u041b\u0410 SSN-646 \"Grayling\" \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u0434\u0448\u0435\u043c 20 \u043c\u0430\u0440\u0442\u0430 199\u2026 https://t.co/8CyBznWaaU", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "US", "indices": [63, 66]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/8CyBznWaaU", "expanded_url": "https://twitter.com/i/web/status/1152549576638914560", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1638615144, "id_str": "1638615144", "name": "Bender Az-Rodriges", "screen_name": "Edward_Sn0wden", "location": "", "description": "@az1ok", "url": "http://t.co/gDRLlQaSWQ", "entities": {"url": {"urls": [{"url": "http://t.co/gDRLlQaSWQ", "expanded_url": "http://www.nsa.gov/", "display_url": "nsa.gov", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 471, "friends_count": 127, "listed_count": 10, "created_at": "Thu Aug 01 19:09:11 +0000 2013", "favourites_count": 214, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11121, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/965007645844307973/YwcZVZjg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638615144/1508098510", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 10, "favorited": false, "retweeted": false, "possibly_sensitive": true, "lang": "ru"}, "is_quote_status": false, "retweet_count": 5, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "ru"},{"created_at": "Sat Jul 20 14:39:38 +0000 2019", "id": 1152588885098205184, "id_str": "1152588885098205184", "text": "RT @Capt_Navy: #\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution 12829x33\u2026", "truncated": false, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [15, 19]}, {"text": "Russian", "indices": [21, 29]}, {"text": "Navy", "indices": [30, 35]}], "symbols": [], "user_mentions": [{"screen_name": "Capt_Navy", "name": "Capt(N)", "id": 783987896319614976, "id_str": "783987896319614976", "indices": [3, 13]}], "urls": []}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587645396094981, "id_str": "1152587645396094981", "text": "#\u0412\u041c\u0424\ud83c\uddf7\ud83c\uddfa#Russian #Navy Superb photo of the RFS Admiral Makarov,a Admiral Grigorovich Class frigate in high resolution\u2026 https://t.co/gtb8MkYcfv", "truncated": true, "entities": {"hashtags": [{"text": "\u0412\u041c\u0424", "indices": [0, 4]}, {"text": "Russian", "indices": [6, 14]}, {"text": "Navy", "indices": [15, 20]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gtb8MkYcfv", "expanded_url": "https://twitter.com/i/web/status/1152587645396094981", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web App", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 783987896319614976, "id_str": "783987896319614976", "name": "Capt(N)", "screen_name": "Capt_Navy", "location": "", "description": "Retired officer of the Navy.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9570, "friends_count": 98, "listed_count": 147, "created_at": "Thu Oct 06 11:10:55 +0000 2016", "favourites_count": 10154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 14614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/784021013927518213/0oC_b6tO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/783987896319614976/1557475089", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 18, "favorite_count": 52, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 18, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:39:01 +0000 2019", "id": 1152588727518203904, "id_str": "1152588727518203904", "text": "RT @KWAMonaghan: \ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [20, 27]}, {"text": "workhardplayhard", "indices": [51, 68]}], "symbols": [], "user_mentions": [{"screen_name": "KWAMonaghan", "name": "Captain(N) Kristjan Monaghan", "id": 59956807, "id_str": "59956807", "indices": [3, 15]}, {"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [72, 85]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [86, 109]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 14:36:49 +0000 2019", "id": 1152588174662787072, "id_str": "1152588174662787072", "text": "\ud83c\udde8\ud83c\udde6 #RCNavy SWIMEX. Canadians who #workhardplayhard in @RoyalCanNavy https://t.co/iDWHFc6PuS", "truncated": false, "entities": {"hashtags": [{"text": "RCNavy", "indices": [3, 10]}, {"text": "workhardplayhard", "indices": [34, 51]}], "symbols": [], "user_mentions": [{"screen_name": "RoyalCanNavy", "name": "Royal Canadian Navy", "id": 438399143, "id_str": "438399143", "indices": [55, 68]}], "urls": [{"url": "https://t.co/iDWHFc6PuS", "expanded_url": "https://twitter.com/royalcannavy/status/975071319715856384", "display_url": "twitter.com/royalcannavy/s\u2026", "indices": [69, 92]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 59956807, "id_str": "59956807", "name": "Captain(N) Kristjan Monaghan", "screen_name": "KWAMonaghan", "location": "Canadian Embassy Washington DC", "description": "Naval Officer in Royal Canadian Navy (Former Captain HMCSMONTREAL)& current @CanadianForces Naval & Assistant Defence Attach\u00e9(CFNA) @CanEmbUSA \ud83c\udde8\ud83c\udde6\ud83c\uddfa\ud83c\uddf8", "url": "https://t.co/vfUHWrLRhn", "entities": {"url": {"urls": [{"url": "https://t.co/vfUHWrLRhn", "expanded_url": "https://m.facebook.com/CAFinUS/", "display_url": "m.facebook.com/CAFinUS/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 759, "friends_count": 1334, "listed_count": 12, "created_at": "Sat Jul 25 02:34:22 +0000 2009", "favourites_count": 9773, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1342, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/897974617301815296/Ik5zKmRq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/59956807/1546995614", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "quoted_status": {"created_at": "Sat Mar 17 18:08:13 +0000 2018", "id": 975071319715856384, "id_str": "975071319715856384", "text": "All hands to swimming stations! Ship\u2019s Company of #HMCSSummerside take a break during #OpPROJECTION West Africa for\u2026 https://t.co/nbIiLnpi0U", "truncated": true, "entities": {"hashtags": [{"text": "HMCSSummerside", "indices": [50, 65]}, {"text": "OpPROJECTION", "indices": [86, 99]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/nbIiLnpi0U", "expanded_url": "https://twitter.com/i/web/status/975071319715856384", "display_url": "twitter.com/i/web/status/9\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 438399143, "id_str": "438399143", "name": "Royal Canadian Navy", "screen_name": "RoyalCanNavy", "location": "Canada", "description": "Official Royal Canadian Navy: versatile, multipurpose & combat-capable / En fran\u00e7ais: @MarineRoyaleCan. #RCNavy Notice: https://t.co/fCYzlx9B4Z", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/fCYzlx9B4Z", "expanded_url": "http://bit.ly/R4gIxr", "display_url": "bit.ly/R4gIxr", "indices": [120, 143]}]}}, "protected": false, "followers_count": 32206, "friends_count": 617, "listed_count": 384, "created_at": "Fri Dec 16 14:59:19 +0000 2011", "favourites_count": 18787, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 12159, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/966328724600819713/OE4K-F-w_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/438399143/1562339817", "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 29, "favorite_count": 135, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": true, "quoted_status_id": 975071319715856384, "quoted_status_id_str": "975071319715856384", "retweet_count": 2, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:35:50 +0000 2019", "id": 1152587927207206912, "id_str": "1152587927207206912", "text": "\ud83c\uddfa\ud83c\uddf8 US Air Force #USAF Boeing OC-135B Open Skies Treaty-certified observation aircraft (with wet film cameras) 61-26\u2026 https://t.co/vW4Bbzbogd", "truncated": true, "entities": {"hashtags": [{"text": "USAF", "indices": [16, 21]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/vW4Bbzbogd", "expanded_url": "https://twitter.com/i/web/status/1152587927207206912", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152325597508620289, "quoted_status_id_str": "1152325597508620289", "quoted_status": {"created_at": "Fri Jul 19 21:13:26 +0000 2019", "id": 1152325597508620289, "id_str": "1152325597508620289", "text": "OC-135W Open Skies (61-2670) callsign \"COBRA52\" departing from Offutt AFB. https://t.co/T8yCiCNqDC", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152325526239023105, "id_str": "1152325526239023105", "indices": [75, 98], "media_url": "http://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "media_url_https": "https://pbs.twimg.com/media/D_3h9fkXkAEfYwb.jpg", "url": "https://t.co/T8yCiCNqDC", "display_url": "pic.twitter.com/T8yCiCNqDC", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152325597508620289/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1110, "resize": "fit"}, "small": {"w": 680, "h": 369, "resize": "fit"}, "medium": {"w": 1200, "h": 650, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 9, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 14:34:43 +0000 2019", "id": 1152587646390153216, "id_str": "1152587646390153216", "text": "@OffuttSpotter96 Did you notice if that was 61-2670 or 61-2672?", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "OffuttSpotter96", "name": "Brandon Finlan-Fuksa", "id": 1105285800, "id_str": "1105285800", "indices": [0, 16]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152428771800158208, "in_reply_to_status_id_str": "1152428771800158208", "in_reply_to_user_id": 1105285800, "in_reply_to_user_id_str": "1105285800", "in_reply_to_screen_name": "OffuttSpotter96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:14:22 +0000 2019", "id": 1152582526407495681, "id_str": "1152582526407495681", "text": "@putinsbotox @chrislowndes @MartinDaubney @brexitparty_uk No Russian bombers have ever been in American airspace. S\u2026 https://t.co/qlsqMaiAuX", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "putinsbotox", "name": "Rab", "id": 2361788440, "id_str": "2361788440", "indices": [0, 12]}, {"screen_name": "chrislowndes", "name": "Chris Lowndes", "id": 17691427, "id_str": "17691427", "indices": [13, 26]}, {"screen_name": "MartinDaubney", "name": "Martin Daubney MEP \u27a1\ufe0f", "id": 568143078, "id_str": "568143078", "indices": [27, 41]}, {"screen_name": "brexitparty_uk", "name": "The Brexit Party", "id": 1094881364887986177, "id_str": "1094881364887986177", "indices": [42, 57]}], "urls": [{"url": "https://t.co/qlsqMaiAuX", "expanded_url": "https://twitter.com/i/web/status/1152582526407495681", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152574563945013248, "in_reply_to_status_id_str": "1152574563945013248", "in_reply_to_user_id": 2361788440, "in_reply_to_user_id_str": "2361788440", "in_reply_to_screen_name": "putinsbotox", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:11:59 +0000 2019", "id": 1152581923090370560, "id_str": "1152581923090370560", "text": "#OpenSkiesTreaty https://t.co/z4lURk2tHP", "truncated": false, "entities": {"hashtags": [{"text": "OpenSkiesTreaty", "indices": [0, 16]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/z4lURk2tHP", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208", "display_url": "twitter.com/OffuttSpotter9\u2026", "indices": [17, 40]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152428771800158208, "quoted_status_id_str": "1152428771800158208", "quoted_status": {"created_at": "Sat Jul 20 04:03:24 +0000 2019", "id": 1152428771800158208, "id_str": "1152428771800158208", "text": "An upclose shot of the OC-135B Open Skies https://t.co/8k8aXXPnfz", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1152428766540500992, "id_str": "1152428766540500992", "indices": [42, 65], "media_url": "http://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "media_url_https": "https://pbs.twimg.com/media/D_4_23qWkAAJzhl.jpg", "url": "https://t.co/8k8aXXPnfz", "display_url": "pic.twitter.com/8k8aXXPnfz", "expanded_url": "https://twitter.com/OffuttSpotter96/status/1152428771800158208/photo/1", "type": "photo", "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 800, "resize": "fit"}, "large": {"w": 2048, "h": 1365, "resize": "fit"}, "small": {"w": 680, "h": 453, "resize": "fit"}}}]}, "source": "Twitter for Android", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 1105285800, "id_str": "1105285800", "name": "Brandon Finlan-Fuksa", "screen_name": "OffuttSpotter96", "location": "Bellevue, Nebraska", "description": "Spotting aircraft at Offutt AFB", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 40, "friends_count": 516, "listed_count": 4, "created_at": "Sun Jan 20 03:45:02 +0000 2013", "favourites_count": 18882, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3944, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1151416271092768768/noT1hynV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1105285800/1563354006", "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 1, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "und"},{"created_at": "Sat Jul 20 14:11:35 +0000 2019", "id": 1152581825165963264, "id_str": "1152581825165963264", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout As proven by the last 30 days of AIS data available and screen-shotted\u2026 https://t.co/WPQj9kKh8f", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/WPQj9kKh8f", "expanded_url": "https://twitter.com/i/web/status/1152581825165963264", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "TweetDeck", "in_reply_to_status_id": 1152580269112778754, "in_reply_to_status_id_str": "1152580269112778754", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:30 +0000 2019", "id": 1152579539052257281, "id_str": "1152579539052257281", "text": "@Fingersoup @IntelDoge @ConflictsW Lot of talk...", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Fingersoup", "name": "\ud83c\udf3b\ud83c\udf38\ud83c\udf3c", "id": 225399350, "id_str": "225399350", "indices": [0, 11]}, {"screen_name": "IntelDoge", "name": "dog", "id": 2407993940, "id_str": "2407993940", "indices": [12, 22]}, {"screen_name": "ConflictsW", "name": "CNW", "id": 941287588056518656, "id_str": "941287588056518656", "indices": [23, 34]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152573997781008384, "in_reply_to_status_id_str": "1152573997781008384", "in_reply_to_user_id": 225399350, "in_reply_to_user_id_str": "225399350", "in_reply_to_screen_name": "Fingersoup", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 14:02:05 +0000 2019", "id": 1152579433313787904, "id_str": "1152579433313787904", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Transit becomes a patrol awful quick if a British ship is being harassed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": []}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152575873473810432, "in_reply_to_status_id_str": "1152575873473810432", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:42:07 +0000 2019", "id": 1152574407791001600, "id_str": "1152574407791001600", "text": "@jeffoakville Thank you sir!", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "jeffoakville", "name": "Jeff Robinson", "id": 187532597, "id_str": "187532597", "indices": [0, 13]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571400458244097, "in_reply_to_status_id_str": "1152571400458244097", "in_reply_to_user_id": 187532597, "in_reply_to_user_id_str": "187532597", "in_reply_to_screen_name": "jeffoakville", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:40:50 +0000 2019", "id": 1152574085265797121, "id_str": "1152574085265797121", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout 30 days, but who's counting? ;) they're also turning their AIS on and o\u2026 https://t.co/JjUXzZvrPi", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/JjUXzZvrPi", "expanded_url": "https://twitter.com/i/web/status/1152574085265797121", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152573590698696704, "in_reply_to_status_id_str": "1152573590698696704", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:37:35 +0000 2019", "id": 1152573267506532353, "id_str": "1152573267506532353", "text": "@TheBrit96 @beankeef @wrightdi @NavyLookout Ahem what? :)\n\nhttps://t.co/lQOUPFNzpW", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}, {"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [11, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/lQOUPFNzpW", "expanded_url": "https://twitter.com/steffanwatkins/status/1152381193331126272?s=21", "display_url": "twitter.com/steffanwatkins\u2026", "indices": [59, 82]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571708802551814, "in_reply_to_status_id_str": "1152571708802551814", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152381193331126272, "quoted_status_id_str": "1152381193331126272", "quoted_status": {"created_at": "Sat Jul 20 00:54:21 +0000 2019", "id": 1152381193331126272, "id_str": "1152381193331126272", "text": "\ud83c\uddec\ud83c\udde7 #RoyalNavy Type 23 frigate HMS Montrose is believe to be the one showing up in the strait of Hormuz w/ MMSI 2320\u2026 https://t.co/PWRUNI7aeo", "truncated": true, "entities": {"hashtags": [{"text": "RoyalNavy", "indices": [3, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PWRUNI7aeo", "expanded_url": "https://twitter.com/i/web/status/1152381193331126272", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter Web Client", "in_reply_to_status_id": 1152381191145889792, "in_reply_to_status_id_str": "1152381191145889792", "in_reply_to_user_id": 15495802, "in_reply_to_user_id_str": "15495802", "in_reply_to_screen_name": "steffanwatkins", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:34:47 +0000 2019", "id": 1152572561600983041, "id_str": "1152572561600983041", "text": "@warfareyachtie @rootsmessenger @Michellewb_ If they think they're hiding they're being misled, that's the problem.\u2026 https://t.co/lT9Np9bGy6", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "warfareyachtie", "name": "warfareyachtie", "id": 1086641250831384578, "id_str": "1086641250831384578", "indices": [0, 15]}, {"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [16, 31]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [32, 44]}], "urls": [{"url": "https://t.co/lT9Np9bGy6", "expanded_url": "https://twitter.com/i/web/status/1152572561600983041", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152571909369991168, "in_reply_to_status_id_str": "1152571909369991168", "in_reply_to_user_id": 1086641250831384578, "in_reply_to_user_id_str": "1086641250831384578", "in_reply_to_screen_name": "warfareyachtie", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:27:26 +0000 2019", "id": 1152570712516976640, "id_str": "1152570712516976640", "text": "@beankeef @TheBrit96 @wrightdi @NavyLookout Wut? The HMS Montrose is routinely transiting the strait, it's perfectl\u2026 https://t.co/GQD591GKUe", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "beankeef", "name": "Running Frogman", "id": 22002947, "id_str": "22002947", "indices": [0, 9]}, {"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [10, 20]}, {"screen_name": "wrightdi", "name": "Backstay", "id": 551019647, "id_str": "551019647", "indices": [21, 30]}, {"screen_name": "NavyLookout", "name": "NavyLookout", "id": 30189793, "id_str": "30189793", "indices": [31, 43]}], "urls": [{"url": "https://t.co/GQD591GKUe", "expanded_url": "https://twitter.com/i/web/status/1152570712516976640", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152495812909424640, "in_reply_to_status_id_str": "1152495812909424640", "in_reply_to_user_id": 22002947, "in_reply_to_user_id_str": "22002947", "in_reply_to_screen_name": "beankeef", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:24:19 +0000 2019", "id": 1152569928924508163, "id_str": "1152569928924508163", "text": "@TheBrit96 Agreed.", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152569407727644672, "in_reply_to_status_id_str": "1152569407727644672", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:17:33 +0000 2019", "id": 1152568228377481216, "id_str": "1152568228377481216", "text": "@TheBrit96 True; it would be interesting to see where they were 15 min before that; the datapoints look quite sprea\u2026 https://t.co/1vrbbMU2Cc", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "TheBrit96", "name": "The Brit", "id": 967377844316893184, "id_str": "967377844316893184", "indices": [0, 10]}], "urls": [{"url": "https://t.co/1vrbbMU2Cc", "expanded_url": "https://twitter.com/i/web/status/1152568228377481216", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152566586655551489, "in_reply_to_status_id_str": "1152566586655551489", "in_reply_to_user_id": 967377844316893184, "in_reply_to_user_id_str": "967377844316893184", "in_reply_to_screen_name": "TheBrit96", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:10:43 +0000 2019", "id": 1152566508238843904, "id_str": "1152566508238843904", "text": "RT @Oriana0214: Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellites \u201csnugg\u2026", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Oriana0214", "name": "Oriana Pawlyk", "id": 36607254, "id_str": "36607254", "indices": [3, 14]}], "urls": []}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Sat Jul 20 00:19:54 +0000 2019", "id": 1152372524656812033, "id_str": "1152372524656812033", "text": "Ex-SecAF Heather Wilson says the Chinese have created maintenance etc. satellites, but questions if their satellite\u2026 https://t.co/jFWfE4q2g4", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/jFWfE4q2g4", "expanded_url": "https://twitter.com/i/web/status/1152372524656812033", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPhone", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 36607254, "id_str": "36607254", "name": "Oriana Pawlyk", "screen_name": "Oriana0214", "location": "Washington, D.C.", "description": "@Militarydotcom air war reporter. B-1B IS NOT NUKE-CAPABLE. Prev @AirForceTimes. @MiamiUniversity. \ud83c\uddfa\ud83c\uddf8\ud83c\uddfa\ud83c\udde6. Chiberia\ud83c\udfe1. Opinions mine. #avgeek [RT, \u2764\ufe0f\u2260E]", "url": "https://t.co/pCB9Df6JoS", "entities": {"url": {"urls": [{"url": "https://t.co/pCB9Df6JoS", "expanded_url": "http://orianakpawlyk.com", "display_url": "orianakpawlyk.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 16633, "friends_count": 4097, "listed_count": 507, "created_at": "Thu Apr 30 05:48:35 +0000 2009", "favourites_count": 33863, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 41439, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "998999", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113128351026343936/F0RCTDb4_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/36607254/1517629654", "profile_link_color": "587CE8", "profile_sidebar_border_color": "337523", "profile_sidebar_fill_color": "A5D164", "profile_text_color": "4C5757", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 11, "favorited": false, "retweeted": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 3, "favorite_count": 0, "favorited": false, "retweeted": false, "lang": "en"},{"created_at": "Sat Jul 20 13:09:44 +0000 2019", "id": 1152566258921070598, "id_str": "1152566258921070598", "text": "RT @manilabulletin: PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "manilabulletin", "name": "Manila Bulletin News", "id": 15375209, "id_str": "15375209", "indices": [3, 18]}], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [79, 102]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}, "source_status_id": 1150734258010578949, "source_status_id_str": "1150734258010578949", "source_user_id": 15375209, "source_user_id_str": "15375209"}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "retweeted_status": {"created_at": "Mon Jul 15 11:50:01 +0000 2019", "id": 1150734258010578949, "id_str": "1150734258010578949", "text": "PH Navy sends 300-strong contingent to Russia for Navy Day https://t.co/PZF6PHxEzC https://t.co/0D5pe5AUzX", "truncated": false, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PZF6PHxEzC", "expanded_url": "https://bit.ly/2Jyu03V", "display_url": "bit.ly/2Jyu03V", "indices": [59, 82]}], "media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1150734255770755074, "id_str": "1150734255770755074", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "media_url_https": "https://pbs.twimg.com/media/D_g6tXIW4AIs3-1.jpg", "url": "https://t.co/0D5pe5AUzX", "display_url": "pic.twitter.com/0D5pe5AUzX", "expanded_url": "https://twitter.com/manilabulletin/status/1150734258010578949/photo/1", "type": "photo", "sizes": {"large": {"w": 960, "h": 638, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 960, "h": 638, "resize": "fit"}, "small": {"w": 680, "h": 452, "resize": "fit"}}}]}, "source": "Sprout Social", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15375209, "id_str": "15375209", "name": "Manila Bulletin News", "screen_name": "manilabulletin", "location": "Manila, Philippines", "description": "Breaking news and stories from different sides. RTs from our journalists. Unparalleled journalism in the Philippines since 1900. #BeFullyInformed", "url": "https://t.co/DJrHgc3ua0", "entities": {"url": {"urls": [{"url": "https://t.co/DJrHgc3ua0", "expanded_url": "http://www.mb.com.ph", "display_url": "mb.com.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 574899, "friends_count": 213, "listed_count": 2880, "created_at": "Thu Jul 10 07:55:26 +0000 2008", "favourites_count": 2360, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 581012, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "303488", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1145117960840736768/JxSshlWs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15375209/1562203823", "profile_link_color": "303488", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "5B544D", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 4, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "is_quote_status": false, "retweet_count": 4, "favorite_count": 0, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 13:02:28 +0000 2019", "id": 1152564428753252352, "id_str": "1152564428753252352", "text": "If no one heard the distress call, and there's no recording of the distress call, there was no distress call.\n\nWhen\u2026 https://t.co/LOdYsRxbGs", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LOdYsRxbGs", "expanded_url": "https://twitter.com/i/web/status/1152564428753252352", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152433540946116616, "quoted_status_id_str": "1152433540946116616", "quoted_status": {"created_at": "Sat Jul 20 04:22:21 +0000 2019", "id": 1152433540946116616, "id_str": "1152433540946116616", "text": "More details: Stena Impero tanker was involved in an accident with an Iranian fishing boat. After accident, the boa\u2026 https://t.co/gk31x0dpR8", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/gk31x0dpR8", "expanded_url": "https://twitter.com/i/web/status/1152433540946116616", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [117, 140]}]}, "source": "TweetDeck", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user": {"id": 96343410, "id_str": "96343410", "name": "Reza Khaasteh", "screen_name": "Khaaasteh", "location": "Tehran, Iran", "description": "\u200f\u0631\u0636\u0627 \u062e\u0648\u0627\u0633\u062a\u0647 \ud83d\udd34\nJournalist \u200e@IranFrontPage", "url": "https://t.co/JQVXc8jhC1", "entities": {"url": {"urls": [{"url": "https://t.co/JQVXc8jhC1", "expanded_url": "http://ifpnews.com", "display_url": "ifpnews.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2949, "friends_count": 1164, "listed_count": 193, "created_at": "Sat Dec 12 13:32:51 +0000 2009", "favourites_count": 7382, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7337, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/883802409335697410/VPd2S61J_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/96343410/1542338748", "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, "translator_type": "regular"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1152281188582789120, "quoted_status_id_str": "1152281188582789120", "retweet_count": 87, "favorite_count": 91, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"}, "retweet_count": 37, "favorite_count": 97, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en"},{"created_at": "Sat Jul 20 12:54:22 +0000 2019", "id": 1152562393383395331, "id_str": "1152562393383395331", "text": "@rootsmessenger @Michellewb_ Considering the last British-flagged ship that HMS Montrose came to the rescue of had\u2026 https://t.co/wxPsnGbt1L", "truncated": true, "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "rootsmessenger", "name": "Ingmar J. Gauger", "id": 73036995, "id_str": "73036995", "indices": [0, 15]}, {"screen_name": "Michellewb_", "name": "Michelle Bockmann", "id": 17762236, "id_str": "17762236", "indices": [16, 28]}], "urls": [{"url": "https://t.co/wxPsnGbt1L", "expanded_url": "https://twitter.com/i/web/status/1152562393383395331", "display_url": "twitter.com/i/web/status/1\u2026", "indices": [116, 139]}]}, "source": "Twitter for iPad", "in_reply_to_status_id": 1152561117572608001, "in_reply_to_status_id_str": "1152561117572608001", "in_reply_to_user_id": 73036995, "in_reply_to_user_id_str": "73036995", "in_reply_to_screen_name": "rootsmessenger", "user": {"id": 15495802, "id_str": "15495802", "name": "Steffan Watkins", "screen_name": "steffanwatkins", "location": "Ottawa / Montr\u00e9al, Canada \ud83c\udde8\ud83c\udde6", "description": "Steffan Watkins is a open source intelligence research consultant mostly focused on ships, planes, and undersea cables; debunking #misinfo & #disinfo about them", "url": "https://t.co/a9urd3qHIY", "entities": {"url": {"urls": [{"url": "https://t.co/a9urd3qHIY", "expanded_url": "https://www.vesselofinterest.com", "display_url": "vesselofinterest.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 11332, "friends_count": 1382, "listed_count": 289, "created_at": "Sat Jul 19 21:39:08 +0000 2008", "favourites_count": 62856, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 69210, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1002334872482951168/ukWppYDp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15495802/1524699244", "profile_link_color": "FF0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "1F1F1F", "profile_text_color": "B0B0B0", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": true, "follow_request_sent": false, "notifications": false, "translator_type": "none"}, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "favorited": false, "retweeted": false, "lang": "en"}, \ No newline at end of file From f76f63eb7641d372c69c76b74af11b75b0d1cf5c Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Sun, 21 Jul 2019 19:37:39 +0200 Subject: [PATCH 06/10] fixed routes --- tweets_analyzer.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 3f3f164..4e7fba8 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -200,9 +200,12 @@ def process_tweet(tweet): if sentence.sentiment.subjectivity == 0: polarity['neutral'] += 1 if sentence.sentiment.subjectivity < 0: - polarity['objective'] += 1 + polarity['negative'] += 1 - x = collections.Counter({'positive': negative, 'negative': negative, 'neutral': neutral}) + x = collections.Counter({'positive': positive, + 'negative': negative, + 'neutral': neutral}) + # print(x.most_common()) key, value = x.most_common()[0] if key == 'positive': From 6717a281d9a483edb9ad604535f6b4e97265f04f Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Sun, 21 Jul 2019 22:22:34 +0200 Subject: [PATCH 07/10] better sorts --- tweets_analyzer.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 4e7fba8..3e9c039 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -392,10 +392,18 @@ def print_sample_tweets(dataset): for layer in dataset.keys(): table = PrettyTable() - table.field_names = ["Tweet", "Date", "Sentiment", "Subjectivity"] + table.field_names = ["Tweet", "Date", "Sentiment", "Subjectivity", "Link"] cprint("[+] Tweets that are {}".format(layer)) - for tweet,sentiment in dataset[layer][0:5]: - table.add_row([tweet.text.strip(), str(tweet.created_at), sentiment.polarity, sentiment.subjectivity]) + if layer in ['negative']: + # we want the MOST negative things said + data = sorted([i for i in dataset[layer]], key=lambda ii: ii[1].polarity, reverse=False) + else: + # and the most positive/nutral by default + data = sorted([i for i in dataset[layer]], key=lambda ii: ii[1].polarity, reverse=False) + + for tweet,sentiment in data[0:10]: + table.add_row([tweet.text.strip(), str(tweet.created_at), sentiment.polarity, sentiment.subjectivity, f"https://twitter.com/{tweet.user.screen_name}/status/{tweet.id}"]) + print(table) From 665442cc3744a343f30956e6d3ebbf3e4dd7809e Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Sun, 21 Jul 2019 22:36:38 +0200 Subject: [PATCH 08/10] better sorts --- tweets_analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweets_analyzer.py b/tweets_analyzer.py index 3e9c039..28349f5 100755 --- a/tweets_analyzer.py +++ b/tweets_analyzer.py @@ -399,7 +399,7 @@ def print_sample_tweets(dataset): data = sorted([i for i in dataset[layer]], key=lambda ii: ii[1].polarity, reverse=False) else: # and the most positive/nutral by default - data = sorted([i for i in dataset[layer]], key=lambda ii: ii[1].polarity, reverse=False) + data = sorted([i for i in dataset[layer]], key=lambda ii: ii[1].polarity, reverse=True) for tweet,sentiment in data[0:10]: table.add_row([tweet.text.strip(), str(tweet.created_at), sentiment.polarity, sentiment.subjectivity, f"https://twitter.com/{tweet.user.screen_name}/status/{tweet.id}"]) From fbdc08070039991bf8f836b7f94af24e62a332cd Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Mon, 22 Jul 2019 16:21:12 +0200 Subject: [PATCH 09/10] right order --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15a9674..3d7a812 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ pip install -r requirements.txt put these into `.env` ```sh -TWITTER_CONSUMER_SECRET=xxxxxx TWITTER_CONSUMER_KEY=xxxxxx +TWITTER_CONSUMER_SECRET=xxxxxx TWITTER_ACCESS_TOKEN=xxxxxx TWITTER_ACCESS_TOKEN_SECRET=xxxxxx ``` From bcd2db5d6c06226f8bdd3b056dff28d9dfd40708 Mon Sep 17 00:00:00 2001 From: Ross Crawford-d'Heureuse Date: Mon, 22 Jul 2019 23:11:26 +0200 Subject: [PATCH 10/10] reqs and corpora --- Dockerfile | 1 + requirements.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ed064ba..8bd0861 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ ENV BUILD_DATE=$BUILD_DATE ENV BUILD_REPO_ORIGIN=$BUILD_REPO_ORIGIN RUN apk add --update alpine-sdk +RUN python -m textblob.download_corpora WORKDIR /src diff --git a/requirements.txt b/requirements.txt index 245e776..2d5bac1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,4 +11,5 @@ six==1.11.0 tqdm==4.25.0 tweepy==3.6.0 urllib3==1.23 -textblob==0.15.3 \ No newline at end of file +textblob==0.15.3 +prettytable \ No newline at end of file